aboutsummaryrefslogtreecommitdiff
path: root/libpod/container_top_unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/container_top_unsupported.go')
-rw-r--r--libpod/container_top_unsupported.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/libpod/container_top_unsupported.go b/libpod/container_top_unsupported.go
new file mode 100644
index 000000000..a8d9b970b
--- /dev/null
+++ b/libpod/container_top_unsupported.go
@@ -0,0 +1,14 @@
+//go:build !linux
+// +build !linux
+
+package libpod
+
+import (
+ "errors"
+)
+
+// Top gathers statistics about the running processes in a container. It returns a
+// []string for output
+func (c *Container) Top(descriptors []string) ([]string, error) {
+ return nil, errors.New("not implemented (*Container) Top")
+}