Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
ea808410
Commit
ea808410
authored
Apr 12, 2010
by
hjk
Browse files
debugger: fix QTCREATORBUG-1127 (kill on disabling multiple breakpoints)
parent
b85dd9fa
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
ea808410
...
@@ -776,9 +776,9 @@ void GdbEngine::postCommandHelper(const GdbCommand &cmd)
...
@@ -776,9 +776,9 @@ void GdbEngine::postCommandHelper(const GdbCommand &cmd)
if
(
state
()
==
InferiorStopping
)
{
if
(
state
()
==
InferiorStopping
)
{
if
(
cmd
.
flags
&
LosesChild
)
if
(
cmd
.
flags
&
LosesChild
)
setState
(
InferiorStopping_Kill
);
setState
(
InferiorStopping_Kill
);
debugMessage
(
_
(
"CHILD ALREADY BEING INTERRUPTED"
));
debugMessage
(
_
(
"CHILD ALREADY BEING INTERRUPTED
. STILL HOPING.
"
));
//
FIXME
//
Calling shutdown() here breaks all situations where two
shutdown
();
// NeedsStop commands are issued in quick succession.
}
else
if
(
state
()
==
InferiorStopping_Kill
)
{
}
else
if
(
state
()
==
InferiorStopping_Kill
)
{
debugMessage
(
_
(
"CHILD ALREADY BEING INTERRUPTED (KILL PENDING)"
));
debugMessage
(
_
(
"CHILD ALREADY BEING INTERRUPTED (KILL PENDING)"
));
// FIXME
// FIXME
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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