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
7351219f
Commit
7351219f
authored
Feb 12, 2010
by
hjk
Browse files
debugger: add breakpoint number and thread id to "stopped" status message
parent
53cfd445
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
7351219f
...
...
@@ -1327,7 +1327,10 @@ void GdbEngine::handleStop1(const GdbMi &data)
}
if
(
reason
==
"breakpoint-hit"
)
{
showStatusMessage
(
tr
(
"Stopped at breakpoint."
));
QByteArray
bpNumber
=
data
.
findChild
(
"bkptno"
).
data
();
QByteArray
threadId
=
data
.
findChild
(
"thread-id"
).
data
();
showStatusMessage
(
tr
(
"Stopped at breakpoint %1 in thread %2."
)
.
arg
(
_
(
bpNumber
),
_
(
threadId
)));
}
else
{
if
(
reason
==
"signal-received"
&&
theDebuggerBoolSetting
(
UseMessageBoxForSignals
))
{
...
...
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