blob: a8d9b970b7fe68b5cae1715cfbecf7e1f738e0ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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")
}
|