| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* sys/netbsd: adding descriptions for device drivers & minor updation of syscall flags
sys/netbsd: reordering rlimit_type
sys/netbsd: reordering flags for stat(2) and mount(2)
sys/netbsd: adding i2c and wscons device drivers
sys/netbsd: adding desciptions for device drivers ioctls
sys/netbsd: minor update in dev_wscons.txt
sys/netbsd: updating descriptions of device driver files
sys/netbsd: adding copyright statement to dev files
sys/netbsd: minor changes in device driver files
sys/netbsd: ioctl descriptions for /dev/tprof
sys/netbsd: adding flags for tprof device driver
* sys/netbsd: updating .const files
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently when we get target consts with target.ConstMap["name"]
during target initialization, we just get 0 for missing consts.
This is error-prone as we can mis-type a const, or a const may
be undefined only on some archs (as we have common unix code
shared between several OSes).
Check that all the consts are actually defined.
The check detects several violations, to fix them:
1. move mremap to linux as it's only defined on linux
2. move S_IFMT to openbsd, as it's only defined and used on openbsd
3. define missing MAP_ANONYMOUS for freebsd and netbsd
4. fix extract for netbsd
|
|
|
* 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
|