diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-03-19 23:28:10 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-03-19 23:28:10 +0000 |
commit | c16f5dca27c693f934b12c948b7d53e98ce9111d (patch) | |
tree | 7e0049694785f47b4700df8c65117bf9b06dc56e /lldb/source/Plugins/Process/Linux/NativeThreadLinux.h | |
parent | d83003ea59ca5592580fa2e0ef27c3cac907aa8f (diff) | |
download | bcm5719-llvm-c16f5dca27c693f934b12c948b7d53e98ce9111d.tar.gz bcm5719-llvm-c16f5dca27c693f934b12c948b7d53e98ce9111d.zip |
Report watchpoint hits during single stepping.
Summary:
Reorganized NativeProcessLinux::MonitorSIGTRAP to check for watchpoint hits on
TRAP_TRACE.
Added test for stepping over watchpoints.
https://llvm.org/bugs/show_bug.cgi?id=22814
Reviewers: ovyalov, tberghammer, vharron, clayborg
Subscribers: jingham, labath, lldb-commits
Differential Revision: http://reviews.llvm.org/D8404
llvm-svn: 232784
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeThreadLinux.h')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeThreadLinux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h index 2519b5b1da0..c77dcbe093f 100644 --- a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h +++ b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h @@ -76,7 +76,7 @@ namespace lldb_private SetStoppedByBreakpoint (); void - SetStoppedByWatchpoint (); + SetStoppedByWatchpoint (uint32_t wp_index); bool IsStoppedAtBreakpoint (); |