mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
6415e8becc
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
8 lines
192 B
Go
8 lines
192 B
Go
// +build linux,x86_64
|
|
package namespaces
|
|
|
|
// Via http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=7b21fddd087678a70ad64afc0f632e0f1071b092
|
|
const (
|
|
SYS_SETNS = 308
|
|
)
|