(stopped_pid uint32)
| 205 | } |
| 206 | |
| 207 | func LetItResume(stopped_pid uint32) { |
| 208 | err := syscall.Kill(int(stopped_pid), syscall.SIGCONT) |
| 209 | if err != nil { |
| 210 | if err == syscall.ESRCH { |
| 211 | fmt.Printf("No such process -> %d\n", stopped_pid) |
| 212 | DelStopped(stopped_pid) |
| 213 | } else { |
| 214 | fmt.Printf("LetItResume err:%v\n", err) |
| 215 | DelStopped(stopped_pid) |
| 216 | } |
| 217 | } |
| 218 | fmt.Printf("Let %d Resume\n", stopped_pid) |
| 219 | } |
| 220 | |
| 221 | func LetItRun() { |
| 222 | fmt.Printf("------LetItRun------\n") |
no test coverage detected