aboutsummaryrefslogtreecommitdiff
path: root/libpod/container_top_unsupported.go
blob: 382c98b541ba4638a9900a8de9656433451f1c79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// +build !linux

package libpod

import "github.com/containers/libpod/libpod/define"

// GetContainerPidInformation returns process-related data of all processes in
// the container.  The output data can be controlled via the `descriptors`
// argument which expects format descriptors and supports all AIXformat
// descriptors of ps (1) plus some additional ones to for instance inspect the
// set of effective capabilities.  Eeach element in the returned string slice
// is a tab-separated string.
//
// For more details, please refer to github.com/containers/psgo.
func (c *Container) GetContainerPidInformation(descriptors []string) ([]string, error) {
	return nil, define.ErrNotImplemented
}