[Lldb-commits] [PATCH] m_private_run_lock is no longer Apple-only

Ed Maste emaste at freebsd.org
Tue Jun 18 05:38:12 PDT 2013


---
I am working on fixing related issues on FreeBSD, but it presumably is
already working fine on Linux and the comment that claims it applies
only to Apple builds is no longer true.

 include/lldb/Target/Process.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/lldb/Target/Process.h b/include/lldb/Target/Process.h
index b1f9eca..d93a58b 100644
--- a/include/lldb/Target/Process.h
+++ b/include/lldb/Target/Process.h
@@ -3524,9 +3524,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
-- 
1.7.11.5




More information about the lldb-commits mailing list