Files
podman/libpod/container_top_unsupported.go
Paul Holzinger bad25da92e libpod: add !remote tag
This should never be pulled into the remote client.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2023-10-24 12:11:34 +02:00

17 lines
382 B
Go

//go:build !remote && !(linux && cgo) && !freebsd
// +build !remote
// +build !linux !cgo
// +build !freebsd
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")
}