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/GDBRemoteRegisterContext.h | |
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/GDBRemoteRegisterContext.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h index 96a21722a55..c1d8249e5c4 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h @@ -98,8 +98,8 @@ protected: friend class ThreadGDBRemote; bool - ReadRegisterBytes(const RegisterInfo *reg_info, DataExtractor &data, GDBRemoteCommunicationClient &gdb_comm, - const GDBRemoteCommunicationClient::Lock &lock); + ReadRegisterBytes (const RegisterInfo *reg_info, + DataExtractor &data); bool WriteRegisterBytes (const RegisterInfo *reg_info, @@ -150,13 +150,11 @@ protected: private: // Helper function for ReadRegisterBytes(). - bool - GetPrimordialRegister(const RegisterInfo *reg_info, GDBRemoteCommunicationClient &gdb_comm, - const GDBRemoteCommunicationClient::Lock &lock); + bool GetPrimordialRegister(const RegisterInfo *reg_info, + GDBRemoteCommunicationClient &gdb_comm); // Helper function for WriteRegisterBytes(). - bool - SetPrimordialRegister(const RegisterInfo *reg_info, GDBRemoteCommunicationClient &gdb_comm, - const GDBRemoteCommunicationClient::Lock &lock); + bool SetPrimordialRegister(const RegisterInfo *reg_info, + GDBRemoteCommunicationClient &gdb_comm); DISALLOW_COPY_AND_ASSIGN (GDBRemoteRegisterContext); }; |