blob: 9b0d7c8c7d46ac6a6316370714ee2c43902ad480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//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
}
|