diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-05-13 21:29:50 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-05-13 21:29:50 +0000 |
| commit | 13e8e1c37d38a87da2d17bd2ed418da9004ae2b3 (patch) | |
| tree | 4af90b7be7d96cfec0cf042e58356cb4d8b7fe87 /lldb/source/Plugins/Process/Linux/ProcessMonitor.h | |
| parent | caf8ffd8e3fb49fd5a5a8a5c907d258277c2b69d (diff) | |
This patch add a "fake" attach waiting for a real implementation and
solve the build break due to the lack of this method.
It also propose a solution to the API changes in RegisterContext.
I upgraded also the the python version in the makefile. My linux
installation has python2.7 and AFAIK also the latest ubuntu
has this version of python so maybe is worth upgrading.
Patch by Marco Minutoli <mminutoli@gmail.com>
[Note: I had to hand merge in the diffs since patch thinks it is a corrupt patch.]
llvm-svn: 131313
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/ProcessMonitor.h')
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/ProcessMonitor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Linux/ProcessMonitor.h b/lldb/source/Plugins/Process/Linux/ProcessMonitor.h index 1bfdb862d88c..0f2f61c8d58c 100644 --- a/lldb/source/Plugins/Process/Linux/ProcessMonitor.h +++ b/lldb/source/Plugins/Process/Linux/ProcessMonitor.h @@ -100,14 +100,14 @@ public: /// /// This method is provided for use by RegisterContextLinux derivatives. bool - ReadRegisterValue(unsigned offset, lldb_private::Scalar &value); + ReadRegisterValue(unsigned offset, lldb_private::RegisterValue &value); /// Writes the given value to the register identified by the given /// (architecture dependent) offset. /// /// This method is provided for use by RegisterContextLinux derivatives. bool - WriteRegisterValue(unsigned offset, const lldb_private::Scalar &value); + WriteRegisterValue(unsigned offset, const lldb_private::RegisterValue &value); /// Reads all general purpose registers into the specified buffer. bool |
