Skip to content

Commit 610d71a

Browse files
authored
Add missing cases to MICmnLLDBDebuggerHandleEvents.cpp (#108)
1 parent 4790321 commit 610d71a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/MICmnLLDBDebuggerHandleEvents.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,6 +1171,18 @@ bool CMICmnLLDBDebuggerHandleEvents::HandleProcessEventStateStopped(
11711171
case lldb::eStopReasonInstrumentation:
11721172
pEventType = "eStopReasonInstrumentation";
11731173
break;
1174+
case lldb::eStopReasonProcessorTrace:
1175+
pEventType = "eStopReasonProcessorTrace";
1176+
break;
1177+
case lldb::eStopReasonFork:
1178+
pEventType = "eStopReasonFork";
1179+
break;
1180+
case lldb::eStopReasonVFork:
1181+
pEventType = "eStopReasonVFork";
1182+
break;
1183+
case lldb::eStopReasonVForkDone:
1184+
pEventType = "eStopReasonVForkDone";
1185+
break;
11741186
}
11751187

11761188
// ToDo: Remove when finished coding application

0 commit comments

Comments
 (0)