Skip to content

Commit

Permalink
Add missing cases to MICmnLLDBDebuggerHandleEvents.cpp (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
apivovarov committed Jun 14, 2023
1 parent 4790321 commit 610d71a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/MICmnLLDBDebuggerHandleEvents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1171,6 +1171,18 @@ bool CMICmnLLDBDebuggerHandleEvents::HandleProcessEventStateStopped(
case lldb::eStopReasonInstrumentation:
pEventType = "eStopReasonInstrumentation";
break;
case lldb::eStopReasonProcessorTrace:
pEventType = "eStopReasonProcessorTrace";
break;
case lldb::eStopReasonFork:
pEventType = "eStopReasonFork";
break;
case lldb::eStopReasonVFork:
pEventType = "eStopReasonVFork";
break;
case lldb::eStopReasonVForkDone:
pEventType = "eStopReasonVForkDone";
break;
}

// ToDo: Remove when finished coding application
Expand Down

0 comments on commit 610d71a

Please sign in to comment.