diff options
author | hjk <qtc-committer@nokia.com> | 2009-02-11 14:17:25 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2009-02-11 14:17:25 +0100 |
commit | df16699ed9958584bb53e8790ccbcdc1e4b42dbb (patch) | |
tree | 0663469dcc7046af81cb2c5363c7254ab1da8cda /src/plugins/debugger/procinterrupt.cpp | |
parent | 9e2671c9a3d8cc86f9a79721dfa9a0690e1bdc94 (diff) | |
download | qt-creator-df16699ed9958584bb53e8790ccbcdc1e4b42dbb.tar.gz |
Fixes: debugger: revert accidental parts of b0650238
Diffstat (limited to 'src/plugins/debugger/procinterrupt.cpp')
-rw-r--r-- | src/plugins/debugger/procinterrupt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |