moby--moby/libcontainerd/utils_linux.go

13 lines
312 B
Go
Raw Normal View History

package libcontainerd // import "github.com/docker/docker/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,
}
}