diff options
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 8c0c3a3..455a1b4 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -608,8 +608,9 @@ struct breakpoint_ops enum print_stop_action (*print_it) (struct bpstat *bs); /* Display information about this breakpoint, for "info - breakpoints". */ - void (*print_one) (struct breakpoint *, struct bp_location **); + breakpoints". Returns false if this method should use the + default behavior. */ + bool (*print_one) (struct breakpoint *, struct bp_location **); /* Display extra information about this breakpoint, below the normal breakpoint description in "info breakpoints". |