aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/API/SBThread.cpp
diff options
context:
space:
mode:
authorQuinn Pham <Quinn.Pham@ibm.com>2021-11-02 08:58:19 -0500
committerQuinn Pham <Quinn.Pham@ibm.com>2021-11-11 15:04:44 -0600
commit04cbfa950e0221ac334f802407a9b766df33eee5 (patch)
treeeff5e8494c0565aa537219a71771b534a5ec52ae /lldb/source/API/SBThread.cpp
parent3e7ad1f2b2c0a753749eaba88d369d6032a50764 (diff)
downloadllvm-04cbfa950e0221ac334f802407a9b766df33eee5.zip
llvm-04cbfa950e0221ac334f802407a9b766df33eee5.tar.gz
llvm-04cbfa950e0221ac334f802407a9b766df33eee5.tar.bz2
[lldb][NFC] Inclusive Language: rename master plan to controlling plan
[NFC] As part of using inclusive language within the llvm project, this patch renames master plan to controlling plan in lldb. Reviewed By: jingham Differential Revision: https://reviews.llvm.org/D113019
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r--lldb/source/API/SBThread.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp
index e0ab8b2..8d5b6f2 100644
--- a/lldb/source/API/SBThread.cpp
+++ b/lldb/source/API/SBThread.cpp
@@ -513,10 +513,10 @@ SBError SBThread::ResumeNewPlan(ExecutionContext &exe_ctx,
return sb_error;
}
- // User level plans should be Master Plans so they can be interrupted, other
- // plans executed, and then a "continue" will resume the plan.
+ // User level plans should be Controlling Plans so they can be interrupted,
+ // other plans executed, and then a "continue" will resume the plan.
if (new_plan != nullptr) {
- new_plan->SetIsMasterPlan(true);
+ new_plan->SetIsControllingPlan(true);
new_plan->SetOkayToDiscard(false);
}