[Lldb-commits] [lldb] r184733 - Remove comment that is no longer applicable

Ed Maste emaste at freebsd.org
Mon Jun 24 06:29:35 PDT 2013


Author: emaste
Date: Mon Jun 24 08:29:34 2013
New Revision: 184733

URL: http://llvm.org/viewvc/llvm-project?rev=184733&view=rev
Log:
Remove comment that is no longer applicable

Since r181446 the m_private_run_lock has been used for all platforms.


Modified:
    lldb/trunk/include/lldb/Target/Process.h

Modified: lldb/trunk/include/lldb/Target/Process.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/Process.h?rev=184733&r1=184732&r2=184733&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/Process.h (original)
+++ lldb/trunk/include/lldb/Target/Process.h Mon Jun 24 08:29:34 2013
@@ -3520,9 +3520,6 @@ public:
     ReadWriteLock &
     GetRunLock ()
     {
-        // The "m_private_run_lock" causes problems for other platforms
-        // right now, so we are leaving this in for Apple builds only
-        // until we can get the kinks worked out.
         if (Host::GetCurrentThread() == m_private_state_thread)
             return m_private_run_lock;
         else





More information about the lldb-commits mailing list