mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 17:34:14 +01:00
11 lines
261 B
Go
11 lines
261 B
Go
//go:build darwin || linux || dragonfly || freebsd || netbsd || openbsd
|
|
// +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
|
|
}
|