Files
podman/libpod/container_top_unsupported.go
Oleksandr Redko 2a2d0b0e18 chore: delete obsolete // +build lines
Signed-off-by: Oleksandr Redko <Oleksandr_Redko@epam.com>
2024-01-04 11:53:38 +02:00

14 lines
323 B
Go

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