Windows: Factor out seccomp

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard
2015-06-26 19:33:30 -07:00
parent b6c196fd18
commit dda986aaa0
5 changed files with 11 additions and 0 deletions
+2
View File
@@ -1,3 +1,5 @@
// +build linux
package seccomp
import "strings"
+2
View File
@@ -1,3 +1,5 @@
// +build linux
package seccomp
import (
+2
View File
@@ -1,3 +1,5 @@
// +build linux
package seccomp
import (
@@ -1,3 +1,5 @@
// +build linux
// Package seccomp provides native seccomp ( https://www.kernel.org/doc/Documentation/prctl/seccomp_filter.txt ) support for go.
package seccomp
@@ -0,0 +1,3 @@
// +build !linux
package seccomp