8 lines
94 B
Go
8 lines
94 B
Go
//go:build !linux
|
|
|
|
package process
|
|
|
|
func zombie(pid int) (bool, error) {
|
|
return false, nil
|
|
}
|