Merge pull request #917 from KentaTada:fix-clone-flags

PiperOrigin-RevId: 272262368
This commit is contained in:
gVisor bot 2019-10-01 12:06:30 -07:00
commit 90e908f419
1 changed files with 7 additions and 7 deletions

View File

@ -33,19 +33,19 @@ import (
func nsCloneFlag(nst specs.LinuxNamespaceType) uintptr {
switch nst {
case specs.IPCNamespace:
return syscall.CLONE_NEWIPC
return unix.CLONE_NEWIPC
case specs.MountNamespace:
return syscall.CLONE_NEWNS
return unix.CLONE_NEWNS
case specs.NetworkNamespace:
return syscall.CLONE_NEWNET
return unix.CLONE_NEWNET
case specs.PIDNamespace:
return syscall.CLONE_NEWPID
return unix.CLONE_NEWPID
case specs.UTSNamespace:
return syscall.CLONE_NEWUTS
return unix.CLONE_NEWUTS
case specs.UserNamespace:
return syscall.CLONE_NEWUSER
return unix.CLONE_NEWUSER
case specs.CgroupNamespace:
panic("cgroup namespace has no associated clone flag")
return unix.CLONE_NEWCGROUP
default:
panic(fmt.Sprintf("unknown namespace %v", nst))
}