aboutsummaryrefslogtreecommitdiff
path: root/lldb/bindings/interface/SBThreadPlan.i
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/bindings/interface/SBThreadPlan.i')
-rw-r--r--lldb/bindings/interface/SBThreadPlan.i12
1 files changed, 10 insertions, 2 deletions
diff --git a/lldb/bindings/interface/SBThreadPlan.i b/lldb/bindings/interface/SBThreadPlan.i
index 36131d529b7b..94ae1a42dd3b 100644
--- a/lldb/bindings/interface/SBThreadPlan.i
+++ b/lldb/bindings/interface/SBThreadPlan.i
@@ -18,8 +18,8 @@ namespace lldb {
%feature("docstring",
"Represents a plan for the execution control of a given thread.
-See also SBThread and SBFrame."
-) SBThread;
+See also :py:class:`SBThread` and :py:class:`SBFrame`."
+) SBThreadPlan;
class SBThreadPlan
{
@@ -92,6 +92,14 @@ public:
bool
IsPlanStale();
+ %feature("docstring", "Return whether this plan will ask to stop other threads when it runs.") GetStopOthers;
+ bool
+ GetStopOthers();
+
+ %feature("docstring", "Set whether this plan will ask to stop other threads when it runs.") GetStopOthers;
+ void
+ SetStopOthers(bool stop_others);
+
SBThreadPlan
QueueThreadPlanForStepOverRange (SBAddress &start_address,
lldb::addr_t range_size);