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
2fdc1cf0
Commit
2fdc1cf0
authored
Oct 07, 2009
by
hjk
Browse files
debugger: escape from an unexpected state
parent
91f8a299
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/plaingdbadapter.cpp
View file @
2fdc1cf0
...
...
@@ -257,6 +257,11 @@ void PlainGdbAdapter::shutdown()
m_engine
->
postCommand
(
_
(
"kill"
),
CB
(
handleKill
));
return
;
case
InferiorShuttingDown
:
// FIXME: How can we end up here?
QTC_ASSERT
(
false
,
qDebug
()
<<
state
());
// Fall through.
case
InferiorShutDown
:
setState
(
AdapterShuttingDown
);
m_engine
->
postCommand
(
_
(
"-gdb-exit"
),
CB
(
handleExit
));
...
...
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