mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08:00
23 lines
502 B
Go
23 lines
502 B
Go
//go:build freebsd
|
|
// +build freebsd
|
|
|
|
package utils
|
|
|
|
import "errors"
|
|
|
|
func RunUnderSystemdScope(pid int, slice string, unitName string) error {
|
|
return errors.New("not implemented for freebsd")
|
|
}
|
|
|
|
func MoveUnderCgroupSubtree(subtree string) error {
|
|
return errors.New("not implemented for freebsd")
|
|
}
|
|
|
|
func GetOwnCgroup() (string, error) {
|
|
return "", errors.New("not implemented for freebsd")
|
|
}
|
|
|
|
func GetCgroupProcess(pid int) (string, error) {
|
|
return "", errors.New("not implemented for freebsd")
|
|
}
|