diff options
author | Matt Kopec <Matt.Kopec@intel.com> | 2013-03-15 20:00:39 +0000 |
---|---|---|
committer | Matt Kopec <Matt.Kopec@intel.com> | 2013-03-15 20:00:39 +0000 |
commit | c6672c8783d3fb086c55b0827e81eaf1bac93f3d (patch) | |
tree | 0ce722026a5a1ea13e9bf3a8b6457f8ff00dbf64 /lldb/source/Plugins/Process/Linux/ProcessMonitor.h | |
parent | d932d41190adfa1842ff8bd10b78eba29862df79 (diff) | |
download | bcm5719-llvm-c6672c8783d3fb086c55b0827e81eaf1bac93f3d.tar.gz bcm5719-llvm-c6672c8783d3fb086c55b0827e81eaf1bac93f3d.zip |
Rollback r177173. Some OSs may not have ptrace extensions which lldb expects when building. This needs to be accounted for.
llvm-svn: 177176
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/ProcessMonitor.h')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/ProcessMonitor.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/lldb/source/Plugins/Process/Linux/ProcessMonitor.h b/lldb/source/Plugins/Process/Linux/ProcessMonitor.h index c446dcd2821..aa014789d62 100644 --- a/lldb/source/Plugins/Process/Linux/ProcessMonitor.h +++ b/lldb/source/Plugins/Process/Linux/ProcessMonitor.h @@ -122,28 +122,18 @@ public: bool ReadGPR(lldb::tid_t tid, void *buf, size_t buf_size); - /// Reads generic floating point registers into the specified buffer. + /// Reads all floating point registers into the specified buffer. bool ReadFPR(lldb::tid_t tid, void *buf, size_t buf_size); - /// Reads the specified register set into the specified buffer. - /// For instance, the extended floating-point register set. - bool - ReadRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset); - /// Writes all general purpose registers into the specified buffer. bool WriteGPR(lldb::tid_t tid, void *buf, size_t buf_size); - /// Writes generic floating point registers into the specified buffer. + /// Writes all floating point registers into the specified buffer. bool WriteFPR(lldb::tid_t tid, void *buf, size_t buf_size); - /// Writes the specified register set into the specified buffer. - /// For instance, the extended floating-point register set. - bool - WriteRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset); - /// Writes a siginfo_t structure corresponding to the given thread ID to the /// memory region pointed to by @p siginfo. bool |