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
4331fe7c
Commit
4331fe7c
authored
Nov 26, 2010
by
hjk
Browse files
debugger: output a log message for spurious SIGTRAP
parent
f3f95c69
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
4331fe7c
...
...
@@ -1443,9 +1443,13 @@ void GdbEngine::handleStop1(const GdbMi &data)
QByteArray
meaning
=
data
.
findChild
(
"signal-meaning"
).
data
();
// Ignore these as they are showing up regularly when
// stopping debugging.
if
(
name
!=
STOP_SIGNAL
&&
(
startParameters
().
startMode
!=
AttachToRemote
||
name
!=
CROSS_STOP_SIGNAL
))
{
if
(
name
==
STOP_SIGNAL
)
{
showMessage
(
_
(
STOP_SIGNAL
" CONSIDERED HARMLESS. CONTINUING."
));
}
else
if
(
startParameters
().
startMode
==
AttachToRemote
&&
name
==
CROSS_STOP_SIGNAL
)
{
showMessage
(
_
(
CROSS_STOP_SIGNAL
" CONSIDERED HARMLESS. CONTINUING."
));
}
else
{
showMessage
(
_
(
"HANDLING SIGNAL"
+
name
));
showStoppedBySignalMessageBox
(
_
(
meaning
),
_
(
name
));
if
(
!
name
.
isEmpty
()
&&
!
meaning
.
isEmpty
())
reasontr
=
msgStoppedBySignal
(
_
(
meaning
),
_
(
name
));
...
...
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