mirror of
https://github.com/intel/llvm.git
synced 2026-01-19 17:45:07 +08:00
Fix a reason of *stopped notifications due to SIGINT/SIGSTOP signals (MI)
# Add SBProcess::GetInterruptedFromEvent
# Add vrEvent arg in CMICmnLLDBDebuggerHandleEvents::HandleProcessEventStateStopped
and CMICmnLLDBDebuggerHandleEvents::HandleProcessEventStopSignal
# Refactor CMICmnLLDBDebuggerHandleEvents::HandleProcessEventStopSignal
## Clean up and fix typos
## Remove vwrbShouldBrk arg
# Fix MiSignalTestCase.test_lldbmi_stopped_when_stopatentry_{local,remote}
to expect SIGSTOP instead of SIGINT
llvm-svn: 237426
This commit is contained in:
@@ -998,6 +998,12 @@ SBProcess::GetProcessFromEvent (const SBEvent &event)
|
||||
return process;
|
||||
}
|
||||
|
||||
bool
|
||||
SBProcess::GetInterruptedFromEvent (const SBEvent &event)
|
||||
{
|
||||
return Process::ProcessEventData::GetInterruptedFromEvent(event.get());
|
||||
}
|
||||
|
||||
bool
|
||||
SBProcess::EventIsProcessEvent (const SBEvent &event)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user