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

this is phase 2 for the removal of libpod from main. Signed-off-by: baude <bbaude@redhat.com>
18 lines
697 B
Go
18 lines
697 B
Go
// +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
|
|
}
|