[Lldb-commits] [PATCH] D97985: [lldb] Rename QueueFundamentalPlan to QueueBasePlan (NFC)
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 4 21:48:06 PST 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe7361c8eccb7: [lldb] Rename QueueFundamentalPlan to QueueBasePlan (NFC) (authored by kastiglione).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D97985/new/
https://reviews.llvm.org/D97985
Files:
lldb/include/lldb/Target/Thread.h
lldb/include/lldb/Target/ThreadPlanBase.h
lldb/source/Target/Thread.cpp
lldb/source/Target/ThreadPlanStack.cpp
Index: lldb/source/Target/ThreadPlanStack.cpp
===================================================================
--- lldb/source/Target/ThreadPlanStack.cpp
+++ lldb/source/Target/ThreadPlanStack.cpp
@@ -375,7 +375,7 @@
lldb::tid_t cur_tid = thread->GetID();
if (!Find(cur_tid)) {
AddThread(*thread.get());
- thread->QueueFundamentalPlan(true);
+ thread->QueueBasePlan(true);
}
}
}
Index: lldb/source/Target/Thread.cpp
===================================================================
--- lldb/source/Target/Thread.cpp
+++ lldb/source/Target/Thread.cpp
@@ -1229,7 +1229,7 @@
return error;
}
-ThreadPlanSP Thread::QueueFundamentalPlan(bool abort_other_plans) {
+ThreadPlanSP Thread::QueueBasePlan(bool abort_other_plans) {
ThreadPlanSP thread_plan_sp(new ThreadPlanBase(*this));
QueueThreadPlan(thread_plan_sp, abort_other_plans);
return thread_plan_sp;
Index: lldb/include/lldb/Target/ThreadPlanBase.h
===================================================================
--- lldb/include/lldb/Target/ThreadPlanBase.h
+++ lldb/include/lldb/Target/ThreadPlanBase.h
@@ -44,8 +44,7 @@
ThreadPlanBase(Thread &thread);
private:
- friend lldb::ThreadPlanSP
- Thread::QueueFundamentalPlan(bool abort_other_plans);
+ friend lldb::ThreadPlanSP Thread::QueueBasePlan(bool abort_other_plans);
ThreadPlanBase(const ThreadPlanBase &) = delete;
const ThreadPlanBase &operator=(const ThreadPlanBase &) = delete;
Index: lldb/include/lldb/Target/Thread.h
===================================================================
--- lldb/include/lldb/Target/Thread.h
+++ lldb/include/lldb/Target/Thread.h
@@ -615,7 +615,7 @@
/// \return
/// A shared pointer to the newly queued thread plan, or nullptr if the
/// plan could not be queued.
- virtual lldb::ThreadPlanSP QueueFundamentalPlan(bool abort_other_plans);
+ lldb::ThreadPlanSP QueueBasePlan(bool abort_other_plans);
/// Queues the plan used to step one instruction from the current PC of \a
/// thread.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D97985.328386.patch
Type: text/x-patch
Size: 2049 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210305/7dee824b/attachment-0001.bin>
More information about the lldb-commits
mailing list