diff options
author | Greg Clayton <gclayton@apple.com> | 2012-04-11 00:24:49 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-04-11 00:24:49 +0000 |
commit | 37a0a24a5fdc05e18770661b4ee13a91893dee1a (patch) | |
tree | 52098bf87fb35019b5b41d9af33dd508739a8bfb /lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp | |
parent | ad66de155bbdb01bc2e0ece769bf150203bd1a63 (diff) | |
download | bcm5719-llvm-37a0a24a5fdc05e18770661b4ee13a91893dee1a.tar.gz bcm5719-llvm-37a0a24a5fdc05e18770661b4ee13a91893dee1a.zip |
No functionality changes, mostly cleanup.
Cleaned up the Mutex::Locker and the ReadWriteLock classes a bit.
Also cleaned up the GDBRemoteCommunication class to not have so many packet functions. Used the "NoLock" versions of send/receive packet functions when possible for a bit of performance.
llvm-svn: 154458
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp index 120caf3d7a7..33b74b42085 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp @@ -181,7 +181,7 @@ GDBRemoteRegisterContext::ReadRegisterBytes (const RegisterInfo *reg_info, DataE if (!m_reg_valid[reg]) { Mutex::Locker locker; - if (gdb_comm.TryLockSequenceMutex (locker)) + if (gdb_comm.GetSequenceMutex (locker, 0)) { const bool thread_suffix_supported = gdb_comm.GetThreadSuffixSupported(); ProcessSP process_sp (m_thread.GetProcess()); @@ -331,7 +331,7 @@ GDBRemoteRegisterContext::WriteRegisterBytes (const lldb_private::RegisterInfo * m_reg_data.GetByteOrder())) // dst byte order { Mutex::Locker locker; - if (gdb_comm.TryLockSequenceMutex (locker)) + if (gdb_comm.GetSequenceMutex (locker, 0)) { const bool thread_suffix_supported = gdb_comm.GetThreadSuffixSupported(); ProcessSP process_sp (m_thread.GetProcess()); @@ -440,7 +440,7 @@ GDBRemoteRegisterContext::ReadAllRegisterValues (lldb::DataBufferSP &data_sp) StringExtractorGDBRemote response; Mutex::Locker locker; - if (gdb_comm.TryLockSequenceMutex (locker)) + if (gdb_comm.GetSequenceMutex (locker, 0)) { char packet[32]; const bool thread_suffix_supported = gdb_comm.GetThreadSuffixSupported(); @@ -496,7 +496,7 @@ GDBRemoteRegisterContext::WriteAllRegisterValues (const lldb::DataBufferSP &data StringExtractorGDBRemote response; Mutex::Locker locker; - if (gdb_comm.TryLockSequenceMutex (locker)) + if (gdb_comm.GetSequenceMutex (locker, 0)) { const bool thread_suffix_supported = gdb_comm.GetThreadSuffixSupported(); ProcessSP process_sp (m_thread.GetProcess()); |