diff options
author | Pavel Labath <labath@google.com> | 2016-08-30 13:56:11 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-08-30 13:56:11 +0000 |
commit | 5c95ee4dd87f34b4564e6eada2e8e4b70834db68 (patch) | |
tree | 863645a416ed01b5f4f07962a535d3ad172ce13d /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | fdc628f7219f6974c1693e0d40fbdae79ea3a282 (diff) | |
download | bcm5719-llvm-5c95ee4dd87f34b4564e6eada2e8e4b70834db68.tar.gz bcm5719-llvm-5c95ee4dd87f34b4564e6eada2e8e4b70834db68.zip |
Revert "gdb-remote: Make the sequence mutex non-recursive"
This reverts commit r279725 as it breaks "dynamic register size" feature of mips.
llvm-svn: 280088
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 0e588e2659c..169d69e1b51 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -1144,7 +1144,7 @@ ProcessGDBRemote::ConnectToDebugserver (const char *connect_url) GetTarget().SetNonStopModeEnabled (m_gdb_comm.SetNonStopMode(true)); m_gdb_comm.GetEchoSupported (); - m_gdb_comm.ComputeThreadSuffixSupport(); + m_gdb_comm.GetThreadSuffixSupported (); m_gdb_comm.GetListThreadsInStopReplySupported (); m_gdb_comm.GetHostInfo (); m_gdb_comm.GetVContSupported ('c'); |