From 5d4cf093aa8a8260c9305fc6a9546674225228b9 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 10 Jul 2015 18:57:19 +0000 Subject: [PATCH] add support from IBM Z architecture Signed-off-by: Srini Brahmaroutu --- netns_linux_s390x.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 netns_linux_s390x.go diff --git a/netns_linux_s390x.go b/netns_linux_s390x.go new file mode 100644 index 0000000..cc13e62 --- /dev/null +++ b/netns_linux_s390x.go @@ -0,0 +1,7 @@ +// +build linux,s390x + +package netns + +const ( + SYS_SETNS = 339 +)