moby--moby/libcontainerd/utils_linux.go

13 lines
261 B
Go

package libcontainerd
import "syscall"
// containerdSysProcAttr returns the SysProcAttr to use when exec'ing
// containerd
func containerdSysProcAttr() *syscall.SysProcAttr {
return &syscall.SysProcAttr{
Setsid: true,
Pdeathsig: syscall.SIGKILL,
}
}