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

package libpod

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

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