mirror of
https://github.com/binwiederhier/ntfy.git
synced 2026-01-19 00:27:25 +01:00
11 lines
205 B
Go
11 lines
205 B
Go
//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
|
|
}
|