containerd/linux/shim/client/client_unix.go
Michael Crosby bba473aeb1 Move shim client into subpackage
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2017-11-07 10:51:12 -05:00

19 lines
258 B
Go

// +build !linux,!windows
package client
import (
"os/exec"
"syscall"
)
func getSysProcAttr(nonewns bool) *syscall.SysProcAttr {
return &syscall.SysProcAttr{
Setpgid: true,
}
}
func setCgroup(cgroupPath string, cmd *exec.Cmd) error {
return nil
}