diff options
| author | Tamas Berghammer <tberghammer@google.com> | 2015-03-31 09:52:22 +0000 |
|---|---|---|
| committer | Tamas Berghammer <tberghammer@google.com> | 2015-03-31 09:52:22 +0000 |
| commit | db264a6d09b04f6794e786078bf727c1c10c798a (patch) | |
| tree | 9da2cc27520248bda09229b65a3c1b5b8fc68964 /lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h | |
| parent | 96d1779e23fad278e9f48ebb0ae6450e7395d6e7 (diff) | |
| download | bcm5719-llvm-db264a6d09b04f6794e786078bf727c1c10c798a.tar.gz bcm5719-llvm-db264a6d09b04f6794e786078bf727c1c10c798a.zip | |
Move several plugin to its own namespace
Affected paths:
* Plugins/Platform/Android/*
* Plugins/Platform/Linux/*
* Plugins/Platform/gdb-server/*
* Plugins/Process/Linux/*
* Plugins/Process/gdb-remote/*
Differential revision: http://reviews.llvm.org/D8654
llvm-svn: 233679
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h')
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h b/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h index e183118e8d4..e8c7c65d432 100644 --- a/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h +++ b/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h @@ -15,8 +15,9 @@ #include "Plugins/Process/Utility/RegisterContext_x86.h" #include "Plugins/Process/Utility/lldb-x86-register-enums.h" -namespace lldb_private -{ +namespace lldb_private { +namespace process_linux { + class NativeProcessLinux; class NativeRegisterContextLinux_x86_64 : public NativeRegisterContextRegisterInfo @@ -118,7 +119,7 @@ namespace lldb_private uint64_t m_gpr_x86_64[k_num_gpr_registers_x86_64]; // Private member methods. - lldb_private::Error + Error WriteRegister(const uint32_t reg, const RegisterValue &value); bool IsRegisterSetAvailable (uint32_t set_index) const; @@ -152,7 +153,7 @@ namespace lldb_private bool ReadFPR (); - lldb_private::Error + Error ReadRegisterRaw (uint32_t reg_index, RegisterValue ®_value); bool @@ -161,7 +162,9 @@ namespace lldb_private bool WriteGPR(); }; -} + +} // namespace process_linux +} // namespace lldb_private #endif // #ifndef lldb_NativeRegisterContextLinux_x86_64_h |

