diff options
author | Tom Tromey <tromey@redhat.com> | 2011-01-31 15:16:59 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-01-31 15:16:59 +0000 |
commit | 45a4356715b9d5c35c581c14e17978a1cd2aed18 (patch) | |
tree | eb0d1c4834625704801fb990bfcfa061c5ba4c32 /gdb/breakpoint.h | |
parent | 09d682a4f353e0e692e602baf229b3b5b93c0142 (diff) | |
download | gdb-45a4356715b9d5c35c581c14e17978a1cd2aed18.zip gdb-45a4356715b9d5c35c581c14e17978a1cd2aed18.tar.gz gdb-45a4356715b9d5c35c581c14e17978a1cd2aed18.tar.bz2 |
* infcmd.c (finish_backward): Use breakpoint_set_silent.
* python/py-breakpoint.c (bppy_set_silent): Use
breakpoint_set_silent.
(bppy_set_thread): Use breakpoint_set_thread.
(bppy_set_task): Use breakpoint_set_task.
* breakpoint.h (breakpoint_set_silent, breakpoint_set_thread)
(breakpoint_set_task): Declare.
(make_breakpoint_silent): Remove.
* breakpoint.c (breakpoint_set_silent): New function.
(breakpoint_set_thread): Likewise.
(breakpoint_set_task): Likewise.
(make_breakpoint_silent): Remove.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 6eed2cd..a7d0c61 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -1063,6 +1063,12 @@ extern void enable_breakpoint (struct breakpoint *); extern void breakpoint_set_commands (struct breakpoint *b, struct command_line *commands); +extern void breakpoint_set_silent (struct breakpoint *b, int silent); + +extern void breakpoint_set_thread (struct breakpoint *b, int thread); + +extern void breakpoint_set_task (struct breakpoint *b, int task); + /* Clear the "inserted" flag in all breakpoints. */ extern void mark_breakpoints_out (void); @@ -1140,9 +1146,6 @@ extern int catch_syscall_enabled (void); Returns 0 if not, greater than 0 if we are. */ extern int catching_syscall_number (int syscall_number); -/* Tell a breakpoint to be quiet. */ -extern void make_breakpoint_silent (struct breakpoint *); - /* Return a tracepoint with the given number if found. */ extern struct breakpoint *get_tracepoint (int num); |