cmd: unify unix-specific code

This commit is contained in:
la-ninpre 2022-08-31 23:26:43 +03:00
parent 6935d83ab3
commit e60e770419
No known key found for this signature in database
GPG key ID: 405C2C163EF6A2C9
3 changed files with 4 additions and 8 deletions

10
cmd/publish_unix.go Normal file
View file

@ -0,0 +1,10 @@
// +build darwin linux dragonfly freebsd netbsd openbsd
package cmd
import "syscall"
func processExists(pid int) bool {
err := syscall.Kill(pid, syscall.Signal(0))
return err == nil
}