mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-08 09:55:42 +00:00
18 lines
342 B
Go
18 lines
342 B
Go
//go:build freebsd
|
|
// +build freebsd
|
|
|
|
package util
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/opencontainers/runtime-tools/generate"
|
|
)
|
|
|
|
func GetContainerPidInformationDescriptors() ([]string, error) {
|
|
return []string{}, errors.New("this function is not supported on freebsd")
|
|
}
|
|
|
|
func AddPrivilegedDevices(g *generate.Generator) error {
|
|
return nil
|
|
}
|