summaryrefslogtreecommitdiff
path: root/libpod/pod_top_unsupported.go
blob: fbe6f733123c419edb4a5375545293d6920d1df2 (plain)
1
2
3
4
5
6
7
8
9
10
// +build !linux

package libpod

import "github.com/containers/podman/v2/libpod/define"

// GetPodPidInformation is exclusive to linux
func (p *Pod) GetPodPidInformation(descriptors []string) ([]string, error) {
	return nil, define.ErrNotImplemented
}