[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
This commit is contained in:
Quinn Pham
2021-11-02 08:58:19 -05:00
parent 3e7ad1f2b2
commit 04cbfa950e
17 changed files with 82 additions and 74 deletions

View File

@@ -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);
}