reg/vendor/github.com/docker/docker-ce/components/engine/pkg/pidfile/pidfile_darwin.go
Jess Frazelle ab6c553e6b
update deps
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-06 10:41:43 -05:00

14 lines
297 B
Go

// +build darwin
package pidfile // import "github.com/docker/docker/pkg/pidfile"
import (
"golang.org/x/sys/unix"
)
func processExists(pid int) bool {
// OS X does not have a proc filesystem.
// Use kill -0 pid to judge if the process exists.
err := unix.Kill(pid, 0)
return err == nil
}