summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp2
-rw-r--r--lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h10
-rw-r--r--lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp2
-rw-r--r--lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h10
4 files changed, 12 insertions, 12 deletions
diff --git a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp
index 6210175f9a7..cbb9dec61b3 100644
--- a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp
+++ b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp
@@ -12,6 +12,8 @@
#include "lldb/Target/Thread.h"
#include "RegisterContextCoreFreeBSD_x86_64.h"
+using namespace lldb_private;
+
RegisterContextCoreFreeBSD_x86_64::RegisterContextCoreFreeBSD_x86_64(Thread &thread,
const DataExtractor &gpregset, const DataExtractor &fpregset)
: RegisterContextFreeBSD_x86_64(thread, 0)
diff --git a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h
index acd594a6e66..d37ea08cff7 100644
--- a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h
+++ b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h
@@ -12,24 +12,22 @@
#include "Plugins/Process/POSIX/RegisterContextFreeBSD_x86_64.h"
-using namespace lldb_private;
-
class RegisterContextCoreFreeBSD_x86_64: public RegisterContextFreeBSD_x86_64
{
public:
- RegisterContextCoreFreeBSD_x86_64 (Thread &thread, const DataExtractor &gpregset,
- const DataExtractor &fpregset);
+ RegisterContextCoreFreeBSD_x86_64 (lldb_private::Thread &thread, const lldb_private::DataExtractor &gpregset,
+ const lldb_private::DataExtractor &fpregset);
~RegisterContextCoreFreeBSD_x86_64();
virtual bool
- ReadRegister(const RegisterInfo *reg_info, RegisterValue &value);
+ ReadRegister(const lldb_private::RegisterInfo *reg_info, lldb_private::RegisterValue &value);
bool
ReadAllRegisterValues(lldb::DataBufferSP &data_sp);
virtual bool
- WriteRegister(const RegisterInfo *reg_info, const RegisterValue &value);
+ WriteRegister(const lldb_private::RegisterInfo *reg_info, const lldb_private::RegisterValue &value);
bool
WriteAllRegisterValues(const lldb::DataBufferSP &data_sp);
diff --git a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp
index d9e3f6d5f90..7328d8835c6 100644
--- a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp
+++ b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp
@@ -12,6 +12,8 @@
#include "lldb/Target/Thread.h"
#include "RegisterContextCoreLinux_x86_64.h"
+using namespace lldb_private;
+
RegisterContextCoreLinux_x86_64::RegisterContextCoreLinux_x86_64(Thread &thread,
const DataExtractor &gpregset,
const DataExtractor &fpregset)
diff --git a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h
index 9cf545afd56..4664508d89c 100644
--- a/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h
+++ b/lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h
@@ -12,24 +12,22 @@
#include "Plugins/Process/POSIX/RegisterContextLinux_x86_64.h"
-using namespace lldb_private;
-
class RegisterContextCoreLinux_x86_64: public RegisterContextLinux_x86_64
{
public:
- RegisterContextCoreLinux_x86_64 (Thread &thread, const DataExtractor &gpregset,
- const DataExtractor &fpregset);
+ RegisterContextCoreLinux_x86_64 (lldb_private::Thread &thread, const lldb_private::DataExtractor &gpregset,
+ const lldb_private::DataExtractor &fpregset);
~RegisterContextCoreLinux_x86_64();
virtual bool
- ReadRegister(const RegisterInfo *reg_info, RegisterValue &value);
+ ReadRegister(const lldb_private::RegisterInfo *reg_info, lldb_private::RegisterValue &value);
bool
ReadAllRegisterValues(lldb::DataBufferSP &data_sp);
virtual bool
- WriteRegister(const RegisterInfo *reg_info, const RegisterValue &value);
+ WriteRegister(const lldb_private::RegisterInfo *reg_info, const lldb_private::RegisterValue &value);
bool
WriteAllRegisterValues(const lldb::DataBufferSP &data_sp);
OpenPOWER on IntegriCloud