mirror of
https://github.com/containers/podman.git
synced 2025-07-17 17:43:23 +08:00

Remove freebsd from the unsupported list and add missing symbols. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
13 lines
217 B
Go
13 lines
217 B
Go
//go:build freebsd
|
|
// +build freebsd
|
|
|
|
package util
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func GetContainerPidInformationDescriptors() ([]string, error) {
|
|
return []string{}, errors.New("this function is not supported on freebsd")
|
|
}
|