Revert "Try closing gracefully before terminating process"

This commit is contained in:
Rémi Verschelde
2018-08-27 17:32:43 +02:00
committed by GitHub
parent c1f687c681
commit 72996df656
6 changed files with 11 additions and 39 deletions

View File

@ -329,7 +329,7 @@ Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, bo
return OK;
}
Error OS_Unix::kill(const ProcessID &p_pid, const int p_max_wait_msec) {
Error OS_Unix::kill(const ProcessID &p_pid) {
int ret = ::kill(p_pid, SIGKILL);
if (!ret) {