aboutsummaryrefslogtreecommitdiff
path: root/pkg/util/utils_freebsd.go
blob: 17436ae81102f0359c8d586d231b3aeec9fc61fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build freebsd
// +build freebsd

package util

import (
	"errors"
)

func GetContainerPidInformationDescriptors() ([]string, error) {
	return []string{}, errors.New("this function is not supported on freebsd")
}