Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
e2e29587
Commit
e2e29587
authored
Jan 14, 2010
by
hjk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugger: go to a defined state if we can't talk to the inferior anymore
parent
dd118df7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/plugins/debugger/gdb/gdbengine.cpp
src/plugins/debugger/gdb/gdbengine.cpp
+4
-0
No files found.
src/plugins/debugger/gdb/gdbengine.cpp
View file @
e2e29587
...
...
@@ -771,8 +771,12 @@ void GdbEngine::postCommandHelper(const GdbCommand &cmd)
if
(
cmd
.
flags
&
LosesChild
)
setState
(
InferiorStopping_Kill
);
debugMessage
(
_
(
"CHILD ALREADY BEING INTERRUPTED"
));
// FIXME
shutdown
();
}
else
if
(
state
()
==
InferiorStopping_Kill
)
{
debugMessage
(
_
(
"CHILD ALREADY BEING INTERRUPTED (KILL PENDING)"
));
// FIXME
shutdown
();
}
else
if
(
state
()
==
InferiorRunningRequested
)
{
if
(
cmd
.
flags
&
LosesChild
)
setState
(
InferiorRunningRequested_Kill
);
...
...
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