podman/libpod/pod_top_unsupported.go

11 lines
250 B
Go

// +build !linux
package libpod
import "github.com/containers/libpod/libpod/define"
// GetPodPidInformation is exclusive to linux
func (p *Pod) GetPodPidInformation(descriptors []string) ([]string, error) {
return nil, define.ErrNotImplemented
}