diff options
author | Pavel Labath <pavel@labath.sk> | 2018-10-03 12:29:33 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2018-10-03 12:29:33 +0000 |
commit | aef7908f6eb060b928f4aa820e4ba5e316ee5e00 (patch) | |
tree | d2f6ba18a4b314b91337e84f03e2da1030ef19ed /lldb/source/Plugins/Process/Linux/NativeProcessLinux.h | |
parent | af50a5b85fe82d8b965142ddf5bfd843efed67d0 (diff) | |
download | bcm5719-llvm-aef7908f6eb060b928f4aa820e4ba5e316ee5e00.tar.gz bcm5719-llvm-aef7908f6eb060b928f4aa820e4ba5e316ee5e00.zip |
Pull FixupBreakpointPCAsNeeded into base class
Summary:
This function existed (with identical code) in both NativeProcessLinux
and NativeProcessNetBSD, and it is likely that it would be useful to any
future implementation of NativeProcessProtocol.
Therefore I move it to the base class.
Reviewers: krytarowski
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D52719
llvm-svn: 343683
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeProcessLinux.h')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeProcessLinux.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h index 5147c361b11..69f2b528d33 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h @@ -182,8 +182,6 @@ private: NativeThreadLinux &AddThread(lldb::tid_t thread_id); - Status FixupBreakpointPCAsNeeded(NativeThreadLinux &thread); - /// Writes a siginfo_t structure corresponding to the given thread ID to the /// memory region pointed to by @p siginfo. Status GetSignalInfo(lldb::tid_t tid, void *siginfo); |