Skip to content
This repository was archived by the owner on Apr 30, 2020. It is now read-only.

Commit 546e821

Browse files
committed
CodeXL-2916
1 parent f7fadbe commit 546e821

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

CodeXL/Components/GpuDebugging/AMDTProcessDebugger/src/pdGDBOutputReader.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2970,6 +2970,16 @@ bool pdGDBOutputReader::handleAsynchronousOutput(const gtASCIIString& gdbOutputL
29702970
bool rc1 = getStopReasonString(gdbOutputLine, stopReason);
29712971
bool wasHostBreakPoint = false;
29722972

2973+
if (!rc1)
2974+
{
2975+
/// Gdb not always put stop reason of the "*stopped" message for steps
2976+
if (gdbOutputLine.find("frame=") != -1)
2977+
{
2978+
flushGDBPrompt();
2979+
rc1 = true;
2980+
}
2981+
}
2982+
29732983
if (rc1)
29742984
{
29752985
// If a signal was received:

0 commit comments

Comments
 (0)