mirror of
https://github.com/containers/podman.git
synced 2025-05-20 16:47:39 +08:00

Using the vendored changes from psgo, incorporate JoinNamespaceAndProcessInfoByPids to get process information for each pid namespace of running containers in the pod. Also added a man page, and tests. Signed-off-by: haircommander <pehunt@redhat.com> Closes: #1298 Approved by: mheon
9 lines
190 B
Go
9 lines
190 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
// GetPodPidInformation is exclusive to linux
|
|
func (p *Pod) GetPodPidInformation(descriptors []string) ([]string, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|