Fixes: debugger: revert accidental parts of b0650238

This commit is contained in:
hjk
2009-02-11 14:17:25 +01:00
parent 9e2671c9a3
commit df16699ed9
3 changed files with 98 additions and 96 deletions

View File

@@ -161,7 +161,7 @@ bool Debugger::Internal::interruptProcess(int pID)
#else
int procId = pID;
if (procId != -1) {
if (kill(procId, 2) == 0)
if (kill(procId, SIGINT) == 0)
return true;
}