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
213a18db
Commit
213a18db
authored
May 19, 2010
by
hjk
Browse files
debugger: -thread-info does not exist on Mac
parent
a31813da
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
213a18db
...
...
@@ -1480,6 +1480,8 @@ void GdbEngine::handleStop1(const GdbMi &data)
int
currentId
=
data
.
findChild
(
"thread-id"
).
data
().
toInt
();
if
(
m_gdbAdapter
->
isTrkAdapter
())
{
m_gdbAdapter
->
trkReloadThreads
();
}
else
if
(
m_isMacGdb
)
{
postCommand
(
"-thread-list-ids"
,
CB
(
handleThreadListIds
),
currentId
);
}
else
{
// This is only available in gdb 7.1+.
postCommand
(
"-thread-info"
,
CB
(
handleThreadInfo
),
currentId
);
...
...
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