Replace process.Signal with syscall.Kill

This commit is contained in:
dtluna 2019-03-27 17:33:25 +03:00
parent 8a28fc42f2
commit 308d079c68

View File

@ -85,13 +85,7 @@ func main() {
exitCode := 0
if len(args.PIDs) > 0 {
for _, pid := range args.PIDs {
process, err := os.FindProcess(pid)
if err != nil {
common.PrintToStderr(fmt.Sprintf("error finding process %v: %v", pid, err))
exitCode = 1
continue
}
err = process.Signal(sig)
err := syscall.Kill(pid, sig)
if err != nil {
common.PrintToStderr(fmt.Sprintf("kill %v: %v", pid, err))
exitCode = 1