2021-03-25 02:09:37 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package cgutil
|
|
|
|
|
2021-04-08 05:04:47 +00:00
|
|
|
const (
|
|
|
|
DefaultCgroupParent = ""
|
|
|
|
)
|
|
|
|
|
2021-04-08 05:00:45 +00:00
|
|
|
// FindCgroupMountpointDir is used to find the cgroup mount point on a Linux
|
|
|
|
// system. Here it is a no-op implemtation
|
|
|
|
func FindCgroupMountpointDir() (string, error) {
|
|
|
|
return "", nil
|
|
|
|
}
|