cmd: unify unix-specific code
parent
6935d83ab3
commit
e60e770419
|
@ -1,8 +0,0 @@
|
||||||
package cmd
|
|
||||||
|
|
||||||
import "syscall"
|
|
||||||
|
|
||||||
func processExists(pid int) bool {
|
|
||||||
err := syscall.Kill(pid, syscall.Signal(0))
|
|
||||||
return err == nil
|
|
||||||
}
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// +build darwin linux dragonfly freebsd netbsd openbsd
|
||||||
|
|
||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import "syscall"
|
import "syscall"
|
|
@ -1,3 +1,5 @@
|
||||||
|
// +build linux dragonfly freebsd netbsd openbsd
|
||||||
|
|
||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
const (
|
const (
|
Loading…
Reference in New Issue