aboutsummaryrefslogtreecommitdiffstats
path: root/sys/netbsd
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: add type alias for socket portDmitry Vyukov2018-01-083-2/+3
| | | | | | type sock_port proc[20000, 4, int16be] That was repeated a few times.
* pkg/compiler: make signalno a type aliasDmitry Vyukov2018-01-081-37/+0
| | | | | | | We don't need compiler support for such things anymore, now we simply can do: type signalno int32[0:65]
* pkg/compiler: add bitsize typeDmitry Vyukov2018-01-061-3/+3
| | | | This is need for few crypto/xfrm descriptions.
* pkg/compiler: add check that len does not refer to array with varlen elementsDmitry Vyukov2017-11-283-5/+5
| | | | | This [almost] always means a bug in descriptions. Fix all bugs identified by the check.
* Changing the types of members of struct statUtkarsh Anand2017-10-302-30/+29
| | | | As defined in the header files.
* Added a few more syscall descriptions, constsUtkarsh Anand2017-10-3013-56/+2384
| | | | and other related files.
* Add two new syscalls `shmctl` and `msgctl`Utkarsh Anand2017-10-304-44/+114
|
* Fix the SYS_SEMCTL value issue for NetBSDUtkarsh Anand2017-10-303-14/+14
|
* sys/netbsd: fix mmap signatureDmitry Vyukov2017-10-253-2/+4
| | | | mmap syscall has 7 arguments (one unused padding)
* Lots of changes to sys/netbsd (#397)Utkarsh Anand2017-10-259-136/+607
| | | | | | | | | | | | | | | | * Lots of changes to sys/netbsd: - Removed a few syscalls that did not have proper constants defined. - Autogenerated *.const files. - Removed a few types like uid and gid, that were not available. - Ran make generate * Few changes for NetBSD support: - Added sys/netbsd/init.go - Added netbsd to sys/sys.go * Fix order in sys/sys.go * Update documentation for NetBSD
* Added 4 files containing syscall descriptions (#396)Utkarsh Anand2017-10-244-0/+335
* Added 4 files containing syscall descriptions - Initial additions for peer review. * Removed a flag: - Because it was failing to compile.