1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-09-27 02:51:59 +02:00
ntfy/cmd/publish_linux.go

9 lines
132 B
Go
Raw Normal View History

2022-06-20 16:56:45 +02:00
package cmd
import "syscall"
func processExists(pid int) bool {
err := syscall.Kill(pid, syscall.Signal(0))
return err == nil
}