mirror of
https://github.com/containers/podman.git
synced 2025-05-21 00:56:36 +08:00

This should never be pulled into the remote client. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
17 lines
382 B
Go
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")
|
|
}
|