ntfy/cmd/publish_unix.go
2022-08-31 23:26:43 +03:00

11 lines
189 B
Go

// +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
}