This commit is contained in:
dmytro.bogovych 2019-02-18 14:37:56 +02:00
parent ce167a625e
commit 3cd89fe12c
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ void OsProcess::killByPid(pid_t pid)
{
if (pid <= 0)
return;
execSystem("kill " + std::to_string(pid));
execSystem("kill -9 " + std::to_string(pid) + " &");
}
#endif