diff options
author | Jim Ingham <jingham@apple.com> | 2012-05-04 23:02:50 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-05-04 23:02:50 +0000 |
commit | 10ebffa48a592e2e03b2e8478b03ccdd0e8da2d5 (patch) | |
tree | 32f9eceb84a66b9b7f0387d5b89ba089d5bb4fe1 /lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp | |
parent | e326ed33a8135dca882a76128840a28c38a1e106 (diff) | |
download | bcm5719-llvm-10ebffa48a592e2e03b2e8478b03ccdd0e8da2d5.tar.gz bcm5719-llvm-10ebffa48a592e2e03b2e8478b03ccdd0e8da2d5.zip |
Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes.
No one was using it and Locker(pthread_mutex_t *) immediately asserts for
pthread_mutex_t's that don't come from a Mutex anyway. Rather than try to make
that work, we should maintain the Mutex abstraction and not pass around the
platform implementation...
Make Mutex::Locker::Lock take a Mutex & or a Mutex *, and remove the constructor
taking a pthread_mutex_t *. You no longer need to call Mutex::GetMutex to pass
your mutex to a Locker (you can't in fact, since I made it private.)
llvm-svn: 156221
Diffstat (limited to 'lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp index c1d9f955159..0b49f1fc279 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp @@ -153,7 +153,7 @@ CommunicationKDP::SendRequestPacketNoLock (const PacketStreamType &request_packe bool CommunicationKDP::GetSequenceMutex (Mutex::Locker& locker) { - return locker.TryLock (m_sequence_mutex.GetMutex()); + return locker.TryLock (m_sequence_mutex); } |