Merge pull request #52 from jhowardmsft/remove-seccomp
Windows: Factor out seccomp
This commit is contained in:
commit
e9c0535f3c
|
@ -1,3 +1,5 @@
|
|||
// +build linux
|
||||
|
||||
package seccomp
|
||||
|
||||
import "strings"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// +build linux
|
||||
|
||||
package seccomp
|
||||
|
||||
import (
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue