mirror of
https://github.com/rclone/rclone.git
synced 2024-12-03 05:45:24 +01:00
15 lines
233 B
Go
15 lines
233 B
Go
// +build darwin
|
|
|
|
package pid
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func processExists(pid int) bool {
|
|
// OS X does not have a proc filesystem.
|
|
// Use kill -0 pid to judge if the process exists.
|
|
err := syscall.Kill(pid, 0)
|
|
return err == nil
|
|
}
|