[Lldb-commits] [lldb] r163575 - /lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Jim Ingham
jingham at apple.com
Mon Sep 10 17:08:52 PDT 2012
Author: jingham
Date: Mon Sep 10 19:08:52 2012
New Revision: 163575
URL: http://llvm.org/viewvc/llvm-project?rev=163575&view=rev
Log:
Typed too fast adding lockers. Actually put them in a locker.
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=163575&r1=163574&r2=163575&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Mon Sep 10 19:08:52 2012
@@ -1739,7 +1739,7 @@
ThreadList &threads = GetThreadList();
{
- Mutex::Locker(threads.GetMutex());
+ Mutex::Locker locker(threads.GetMutex());
size_t num_threads = threads.GetSize();
for (size_t i = 0; i < num_threads; i++)
@@ -1774,7 +1774,7 @@
// have to run the risk of letting those threads proceed a bit.
{
- Mutex::Locker(threads.GetMutex());
+ Mutex::Locker locker(threads.GetMutex());
size_t num_threads = threads.GetSize();
for (size_t i = 0; i < num_threads; i++)
More information about the lldb-commits
mailing list