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
Tobias Hunger
qt-creator
Commits
e0f4c4bc
Commit
e0f4c4bc
authored
Oct 08, 2009
by
Oswald Buddenhagen
Browse files
=thread-group-created are the new process creation notifications
parent
8fdf9e61
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
e0f4c4bc
...
...
@@ -445,6 +445,9 @@ void GdbEngine::handleResponse(const QByteArray &buff)
// Archer has "{id="28902"}"
QByteArray
id
=
result
.
findChild
(
"id"
).
data
();
showStatusMessage
(
tr
(
"Thread group %1 created."
).
arg
(
_
(
id
)));
int
pid
=
id
.
toInt
();
if
(
pid
!=
inferiorPid
())
handleInferiorPidChanged
(
pid
);
}
else
if
(
asyncClass
==
"thread-created"
)
{
//"{id="1",group-id="28902"}"
QByteArray
id
=
result
.
findChild
(
"id"
).
data
();
...
...
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