ntfy/cmd/publish_unix.go

11 lines
189 B
Go
Raw Normal View History

2022-09-01 08:26:43 +12:00
// +build darwin linux dragonfly freebsd netbsd openbsd
2022-06-21 02:56:45 +12:00
package cmd
import "syscall"
func processExists(pid int) bool {
err := syscall.Kill(pid, syscall.Signal(0))
return err == nil
}