Kill process with SIGKILL signal

An "adb push" command is not terminated by SIGTERM.
master
Romain Vimont 5 years ago
parent 7afd149f4b
commit b566700bfd

@ -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…
Cancel
Save