diff options
| author | Jim Ingham <jingham@apple.com> | 2012-12-18 02:03:49 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2012-12-18 02:03:49 +0000 |
| commit | 1b5792e5ad1831aecd25ec50cc279e28e49e5c81 (patch) | |
| tree | da58d6cc035945e68cbf63cb89fe5ba5763b1999 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
| parent | 2a45e409a8ae86c7761d805ecb61b2052a4d570f (diff) | |
| download | bcm5719-llvm-1b5792e5ad1831aecd25ec50cc279e28e49e5c81.tar.gz bcm5719-llvm-1b5792e5ad1831aecd25ec50cc279e28e49e5c81.zip | |
Adding events when watchpoints are set or changed.
<rdar://problem/11597849>
llvm-svn: 170400
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
| -rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index d19878f4837..520dfc44adc 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -202,10 +202,10 @@ public: // Process Watchpoints //---------------------------------------------------------------------- virtual lldb_private::Error - EnableWatchpoint (lldb_private::Watchpoint *wp); + EnableWatchpoint (lldb_private::Watchpoint *wp, bool notify = true); virtual lldb_private::Error - DisableWatchpoint (lldb_private::Watchpoint *wp); + DisableWatchpoint (lldb_private::Watchpoint *wp, bool notify = true); virtual lldb_private::Error GetWatchpointSupportInfo (uint32_t &num); |

