mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 17:10:44 +08:00
Checkpoint. Viewing assembly.
This commit is contained in:
@@ -520,7 +520,7 @@ void SeerMainWindow::handleText (const QString& text) {
|
||||
}else if (text.startsWith("^done,symbols={") && text.endsWith("}")) {
|
||||
return;
|
||||
|
||||
}else if (text == "^exit") {
|
||||
}else if (text.startsWith("^done,asm_insns=[")) {
|
||||
return;
|
||||
|
||||
}else if (text.contains(QRegExp("^([0-9]+)\\^done"))) {
|
||||
@@ -535,6 +535,9 @@ void SeerMainWindow::handleText (const QString& text) {
|
||||
}else if (text.contains(QRegExp("^([0-9]+)\\^done,memory="))) {
|
||||
return;
|
||||
|
||||
}else if (text == "^exit") {
|
||||
return;
|
||||
|
||||
}else if (text.startsWith("*running,thread-id=\"")) {
|
||||
|
||||
QString threadid_text = Seer::parseFirst(text, "thread-id=", '"', '"', false);
|
||||
@@ -547,6 +550,7 @@ void SeerMainWindow::handleText (const QString& text) {
|
||||
//^connected,frame={level=\"0\",addr=\"0x00007f48351f80c1\",func=\"read\",args=[],from=\"/lib64/libc.so.6\",arch=\"i386:x86-64\"}"
|
||||
return;
|
||||
|
||||
|
||||
}else if (text.startsWith("*stopped")) {
|
||||
|
||||
QString reason_text = Seer::parseFirst(text, "reason=", '"', '"', false);
|
||||
|
||||
Reference in New Issue
Block a user