diff options
Diffstat (limited to 'libpod/pod_top_unsupported.go')
-rw-r--r-- | libpod/pod_top_unsupported.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libpod/pod_top_unsupported.go b/libpod/pod_top_unsupported.go new file mode 100644 index 000000000..d44470523 --- /dev/null +++ b/libpod/pod_top_unsupported.go @@ -0,0 +1,8 @@ +// +build !linux + +package libpod + +// GetPodPidInformation is exclusive to linux +func (p *Pod) GetPodPidInformation(descriptors []string) ([]string, error) { + return nil, ErrNotImplemented +} |