Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
954b2b17
Commit
954b2b17
authored
Oct 28, 2009
by
Oswald Buddenhagen
Browse files
less noise
parent
0c0925b6
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/attachgdbadapter.cpp
View file @
954b2b17
...
...
@@ -91,7 +91,6 @@ void AttachGdbAdapter::handleAttach(const GdbResponse &response)
void
AttachGdbAdapter
::
interruptInferior
()
{
debugMessage
(
_
(
"TRYING TO INTERUPT INFERIOR"
));
const
qint64
pid
=
startParameters
().
attachPID
;
if
(
!
interruptProcess
(
pid
))
debugMessage
(
_
(
"CANNOT INTERRUPT %1"
).
arg
(
pid
));
...
...
src/plugins/debugger/gdb/plaingdbadapter.cpp
View file @
954b2b17
...
...
@@ -132,7 +132,6 @@ void PlainGdbAdapter::handleExecRun(const GdbResponse &response)
void
PlainGdbAdapter
::
interruptInferior
()
{
debugMessage
(
_
(
"TRYING TO INTERUPT INFERIOR"
));
const
qint64
attachedPID
=
m_engine
->
inferiorPid
();
if
(
attachedPID
<=
0
)
{
debugMessage
(
_
(
"TRYING TO INTERRUPT INFERIOR BEFORE PID WAS OBTAINED"
));
...
...
src/plugins/debugger/gdb/termgdbadapter.cpp
View file @
954b2b17
...
...
@@ -131,7 +131,6 @@ void TermGdbAdapter::startInferiorPhase2()
void
TermGdbAdapter
::
interruptInferior
()
{
debugMessage
(
_
(
"TRYING TO INTERUPT INFERIOR"
));
const
qint64
attachedPID
=
m_engine
->
inferiorPid
();
if
(
!
interruptProcess
(
attachedPID
))
debugMessage
(
_
(
"CANNOT INTERRUPT %1"
).
arg
(
attachedPID
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment