forked from mirrors/ntfy
8 lines
132 B
Go
8 lines
132 B
Go
package cmd
|
|
|
|
import "syscall"
|
|
|
|
func processExists(pid int) bool {
|
|
err := syscall.Kill(pid, syscall.Signal(0))
|
|
return err == nil
|
|
}
|