mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
Handle a generic "*stopped" message better.
dprintf will result in a very plain "*stopped" message if the dprintf is told to call a function that may throw an exception, thus calling std::terminate.
This commit is contained in:
@@ -51,7 +51,8 @@ void SeerRunStatusIndicator::handleText (const QString& text) {
|
||||
// *running,thread-id="2"
|
||||
setRunStatus(SeerRunStatusIndicator::Running);
|
||||
|
||||
}else if (text.startsWith("*stopped,")) {
|
||||
}else if (text.startsWith("*stopped")) {
|
||||
|
||||
setRunStatus(SeerRunStatusIndicator::Stopped);
|
||||
|
||||
//^connected,frame={level=\"0\",addr=\"0x00007f48351f80c1\",func=\"read\",args=[],from=\"/lib64/libc.so.6\",arch=\"i386:x86-64\"}"
|
||||
|
||||
Reference in New Issue
Block a user