-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprocess.go
64 lines (55 loc) · 1.03 KB
/
process.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"fmt"
"time"
"os"
"strconv"
"io/ioutil"
"syscall"
)
func GetAllProcesses() []int {
var result []int
dir, err := ioutil.ReadDir("/proc")
if err != nil {
Error("unable to read /proc", err)
return result
}
for i := len(dir)-1; i != 0; i-- {
if dir[i].IsDir() == false {
continue
}
integer, err := strconv.Atoi(dir[i].Name())
if err != nil {
continue
}
result = append(result, integer)
}
return result
}
func KillAllProcesses() {
procs := GetAllProcesses()
for i := 0; i < len(procs); i++ {
if procs[i] == 1 {
continue
}
proc, err := os.FindProcess(procs[i])
if err != nil {
continue
}
if testMode {
fmt.Printf("SIGTERM %d\n", proc.Pid)
} else {
go func (pid int) {
time.Sleep(5 * time.Second)
if proc, err := os.FindProcess(pid); err == nil {
proc.Kill()
return
} else {
return
}
}(proc.Pid)
proc.Signal(syscall.SIGTERM)
proc.Wait()
}
}
}