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

package libpod

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

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