mirror of
https://github.com/vishvananda/netns
synced 2025-02-18 12:36:49 +00:00
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>
8 lines
63 B
Go
8 lines
63 B
Go
// +build linux,386
|
|
|
|
package netns
|
|
|
|
const (
|
|
SYS_SETNS = 346
|
|
)
|