mirror of
https://github.com/moby/moby.git
synced 2026-06-24 16:58:54 +00:00
8 lines
94 B
Go
8 lines
94 B
Go
//go:build !linux
|
|
|
|
package process
|
|
|
|
func zombie(pid int) (bool, error) {
|
|
return false, nil
|
|
}
|