diff options
author | Pedro Alves <palves@redhat.com> | 2018-08-31 14:24:13 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2018-08-31 18:47:36 +0100 |
commit | 7ea65f08fa1b8279b65133a958de02fe84767eb9 (patch) | |
tree | b5db331c660b8d45bc13d75c6c463df4d7b1f51e /gdb/gdbarch.h | |
parent | 7eb65fafed7b50511f52664e98e22b20eb697197 (diff) | |
download | binutils-7ea65f08fa1b8279b65133a958de02fe84767eb9.zip binutils-7ea65f08fa1b8279b65133a958de02fe84767eb9.tar.gz binutils-7ea65f08fa1b8279b65133a958de02fe84767eb9.tar.bz2 |
Add comment describing continuable/steppable/non-steppable watchpoints
These weren't described anywhere in the sources.
gdb/ChangeLog:
2018-08-31 Pedro Alves <palves@redhat.com>
* gdbarch.sh (have_nonsteppable_watchpoint): Add comment.
* target.h (Hardware watchpoint interfaces): Describe
continuable/steppable/non-steppable watchpoints.
* gdbarch.h, gdbarch.c: Regenerate.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index b563f8d..8340881 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -818,6 +818,8 @@ extern void set_gdbarch_adjust_dwarf2_line (struct gdbarch *gdbarch, gdbarch_adj extern int gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch); extern void set_gdbarch_cannot_step_breakpoint (struct gdbarch *gdbarch, int cannot_step_breakpoint); +/* See comment in target.h about continue, steppable and non-steppable watchpoints. */ + extern int gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch); extern void set_gdbarch_have_nonsteppable_watchpoint (struct gdbarch *gdbarch, int have_nonsteppable_watchpoint); |