aboutsummaryrefslogtreecommitdiff
path: root/libpod/pod_top_unsupported.go
blob: 9a33332755b4f9d114db1a3009079ecb6bcbad51 (plain)
1
2
3
4
5
6
7
8
9
10
// +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
}