github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/utils/utils_windows.go (about) 1 // +build windows 2 3 package utils 4 5 import "github.com/pkg/errors" 6 7 func RunUnderSystemdScope(pid int, slice string, unitName string) error { 8 return errors.New("not implemented for windows") 9 } 10 11 func MoveUnderCgroupSubtree(subtree string) error { 12 return errors.New("not implemented for windows") 13 } 14 15 func GetOwnCgroup() (string, error) { 16 return "", errors.New("not implemented for windows") 17 } 18 19 func GetCgroupProcess(pid int) (string, error) { 20 return "", errors.New("not implemented for windows") 21 }