mirror of
https://github.com/containerd/containerd.git
synced 2026-07-11 18:14:17 +00:00
11 lines
137 B
Go
11 lines
137 B
Go
// +build linux
|
|
|
|
package shim
|
|
|
|
import "syscall"
|
|
|
|
var atter = syscall.SysProcAttr{
|
|
Cloneflags: syscall.CLONE_NEWNS,
|
|
Setpgid: true,
|
|
}
|