netns/netns_linux_386.go
Dave Tucker 16c2d46118 Add Build Flags
This commit adds build flags for the various architectures to prevent
failures when cross compiling. It also fixes errors in
netns_unspecified.go by replacing the undefined type Namespace with
NsHandle

Signed-off-by: Dave Tucker <dt@docker.com>
2015-05-20 19:27:24 +01:00

8 lines
63 B
Go

// +build linux,386
package netns
const (
SYS_SETNS = 346
)