Merge pull request #52 from jhowardmsft/remove-seccomp

Windows: Factor out seccomp
This commit is contained in:
Michael Crosby 2015-07-09 11:50:41 -07:00
commit e9c0535f3c
5 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,5 @@
// +build linux
package seccomp package seccomp
import "strings" import "strings"

View File

@ -1,3 +1,5 @@
// +build linux
package seccomp package seccomp
import ( import (

View File

@ -1,3 +1,5 @@
// +build linux
package seccomp package seccomp
import ( import (

View File

@ -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 provides native seccomp ( https://www.kernel.org/doc/Documentation/prctl/seccomp_filter.txt ) support for go.
package seccomp package seccomp

View File

@ -0,0 +1,3 @@
// +build !linux
package seccomp