Files
moby/pkg/process/process_nolinux.go
Sebastiaan van Stijn 1359046a36 pkg/process: call out that "Zombie" is only supported on Linux
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2025-07-18 16:16:08 +02:00

8 lines
94 B
Go

//go:build !linux
package process
func zombie(pid int) (bool, error) {
return false, nil
}