diff options
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index 1535fd41260..0d39e98f428 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp @@ -225,14 +225,9 @@ GDBRemoteCommunication::GetAck () } bool -GDBRemoteCommunication::GetSequenceMutex (Mutex::Locker& locker, uint32_t usec_timeout) +GDBRemoteCommunication::GetSequenceMutex (Mutex::Locker& locker) { - if (usec_timeout == 0) - return locker.TryLock (m_sequence_mutex.GetMutex()); - - // Wait for the lock - locker.Lock (m_sequence_mutex.GetMutex()); - return true; + return locker.TryLock (m_sequence_mutex.GetMutex()); } |