From df16699ed9958584bb53e8790ccbcdc1e4b42dbb Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 11 Feb 2009 14:17:25 +0100 Subject: Fixes: debugger: revert accidental parts of b0650238 --- src/plugins/debugger/procinterrupt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/debugger/procinterrupt.cpp') diff --git a/src/plugins/debugger/procinterrupt.cpp b/src/plugins/debugger/procinterrupt.cpp index 08f7d39280..824ccac41f 100644 --- a/src/plugins/debugger/procinterrupt.cpp +++ b/src/plugins/debugger/procinterrupt.cpp @@ -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; } -- cgit v1.2.1