mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 12:25:46 +08:00
Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where
hitting auto-continue signals while running a thread plan would cause us to lose control of the debug session. <rdar://problem/12993641> llvm-svn: 174793
This commit is contained in:
@@ -909,6 +909,18 @@ SBProcess::GetRestartedFromEvent (const SBEvent &event)
|
||||
return Process::ProcessEventData::GetRestartedFromEvent (event.get());
|
||||
}
|
||||
|
||||
size_t
|
||||
SBProcess::GetNumRestartedReasonsFromEvent (const lldb::SBEvent &event)
|
||||
{
|
||||
return Process::ProcessEventData::GetNumRestartedReasons(event.get());
|
||||
}
|
||||
|
||||
const char *
|
||||
SBProcess::GetRestartedReasonAtIndexFromEvent (const lldb::SBEvent &event, size_t idx)
|
||||
{
|
||||
return Process::ProcessEventData::GetRestartedReasonAtIndex(event.get(), idx);
|
||||
}
|
||||
|
||||
SBProcess
|
||||
SBProcess::GetProcessFromEvent (const SBEvent &event)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user