diff options
author | Walter Erquinigo <a20012251@gmail.com> | 2021-01-22 10:22:26 -0800 |
---|---|---|
committer | Walter Erquinigo <a20012251@gmail.com> | 2021-01-25 11:30:48 -0800 |
commit | 4bb6244871c6914517a21f56830b3765495792f2 (patch) | |
tree | 0e19423637266861045823add9e0213c87bbfb91 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | d36812892c16b551f058774babbc8727737f80cd (diff) | |
download | llvm-4bb6244871c6914517a21f56830b3765495792f2.zip llvm-4bb6244871c6914517a21f56830b3765495792f2.tar.gz llvm-4bb6244871c6914517a21f56830b3765495792f2.tar.bz2 |
[ThreadPlan] fix exec on Linux
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 89a8597..aba870c 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -1602,8 +1602,8 @@ bool ProcessGDBRemote::UpdateThreadIDList() { return true; } -bool ProcessGDBRemote::UpdateThreadList(ThreadList &old_thread_list, - ThreadList &new_thread_list) { +bool ProcessGDBRemote::DoUpdateThreadList(ThreadList &old_thread_list, + ThreadList &new_thread_list) { // locker will keep a mutex locked until it goes out of scope Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_THREAD)); LLDB_LOGV(log, "pid = {0}", GetID()); |