39 lines · plain
1%feature("docstring",2"Represents a plan for the execution control of a given thread.3 4See also :py:class:`SBThread` and :py:class:`SBFrame`."5) lldb::SBThreadPlan;6 7%feature("docstring", "8 Get the number of words associated with the stop reason.9 See also GetStopReasonDataAtIndex()."10) lldb::SBThreadPlan::GetStopReasonDataCount;11 12%feature("docstring", "13 Get information associated with a stop reason.14 15 Breakpoint stop reasons will have data that consists of pairs of16 breakpoint IDs followed by the breakpoint location IDs (they always come17 in pairs).18 19 Stop Reason Count Data Type20 ======================== ===== =========================================21 eStopReasonNone 022 eStopReasonTrace 023 eStopReasonBreakpoint N duple: {breakpoint id, location id}24 eStopReasonWatchpoint 1 watchpoint id25 eStopReasonSignal 1 unix signal number26 eStopReasonException N exception data27 eStopReasonExec 028 eStopReasonFork 1 pid of the child process29 eStopReasonVFork 1 pid of the child process30 eStopReasonVForkDone 031 eStopReasonPlanComplete 0"32) lldb::SBThreadPlan::GetStopReasonDataAtIndex;33 34%feature("docstring", "Return whether this plan will ask to stop other threads when it runs."35) lldb::SBThreadPlan::GetStopOthers;36 37%feature("docstring", "Set whether this plan will ask to stop other threads when it runs."38) lldb::SBThreadPlan::SetStopOthers;39