Kill process with SIGKILL signal
An "adb push" command is not terminated by SIGTERM.
This commit is contained in:
parent
7afd149f4b
commit
b566700bfd
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ process_terminate(pid_t pid) {
|
|||
(int) pid);
|
||||
abort();
|
||||
}
|
||||
return kill(pid, SIGTERM) != -1;
|
||||
return kill(pid, SIGKILL) != -1;
|
||||
}
|
||||
|
||||
exit_code_t
|
||||
|
|
Loading…
Reference in a new issue