mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-12-17 21:44:20 +01:00
Kill process with SIGKILL signal
An "adb push" command is not terminated by SIGTERM.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user