aboutsummaryrefslogtreecommitdiffstats
path: root/sys/sys.go
diff options
context:
space:
mode:
authorUtkarsh Anand <uanand009@gmail.com>2017-10-25 12:57:47 +0530
committerDmitry Vyukov <dvyukov@google.com>2017-10-25 09:27:47 +0200
commit3f955eba7f6eee3d98f78d3398863f3d922a0b35 (patch)
tree5bae0f6963f58fea690ee7a21d3e252a14b08cf3 /sys/sys.go
parent88999972bf16ffc379ada779bfb44a5fa6edf741 (diff)
Lots of changes to sys/netbsd (#397)
* 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
Diffstat (limited to 'sys/sys.go')
-rw-r--r--sys/sys.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys.go b/sys/sys.go
index 5b69648b2..6c7986296 100644
--- a/sys/sys.go
+++ b/sys/sys.go
@@ -8,6 +8,7 @@ import (
_ "github.com/google/syzkaller/sys/freebsd"
_ "github.com/google/syzkaller/sys/fuchsia"
_ "github.com/google/syzkaller/sys/linux"
+ _ "github.com/google/syzkaller/sys/netbsd"
_ "github.com/google/syzkaller/sys/windows"
)