diff options
author | Pavel Labath <pavel@labath.sk> | 2018-09-13 20:17:40 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2018-09-13 20:17:40 +0000 |
commit | 2ce2652716aa1314d23b70895c67c6043842d7bd (patch) | |
tree | 3b71be49dcb2cb45a989c40733b1bff47d31a792 /lldb/source/Plugins/Process/Linux/NativeProcessLinux.h | |
parent | 8d8c057eabf56d9f83b14334c8107fc7217f67c7 (diff) | |
download | bcm5719-llvm-2ce2652716aa1314d23b70895c67c6043842d7bd.tar.gz bcm5719-llvm-2ce2652716aa1314d23b70895c67c6043842d7bd.zip |
NativeProcessProtocol: Sink ReadMemoryWithoutTrap into base class
The two existing implementations have the function implemented
identically, and there's no reason to believe that this would be
different for other implementations.
llvm-svn: 342167
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeProcessLinux.h')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeProcessLinux.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h index 97ad5711ff1..33f94b002c0 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h @@ -71,9 +71,6 @@ public: Status ReadMemory(lldb::addr_t addr, void *buf, size_t size, size_t &bytes_read) override; - Status ReadMemoryWithoutTrap(lldb::addr_t addr, void *buf, size_t size, - size_t &bytes_read) override; - Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size, size_t &bytes_written) override; |