diff options
author | Pedro Alves <palves@redhat.com> | 2011-07-25 11:21:08 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2011-07-25 11:21:08 +0000 |
commit | 2060206eaf1f2784e57b350612dc6901504b526f (patch) | |
tree | 6b28266e5fd6b58262d42a6e2acc1309894b2019 /gdb/breakpoint.h | |
parent | 001c8c333dd8a6fe452203185e57cbcd1a21c57c (diff) | |
download | gdb-2060206eaf1f2784e57b350612dc6901504b526f.zip gdb-2060206eaf1f2784e57b350612dc6901504b526f.tar.gz gdb-2060206eaf1f2784e57b350612dc6901504b526f.tar.bz2 |
2011-07-25 Pedro Alves <pedro@codesourcery.com>
* ada-lang.c (dtor_exception, re_set_exception): Indirect through
the the base class ops table.
(catch_exception_breakpoint_ops)
(catch_exception_unhandled_breakpoint_ops)
(catch_assert_breakpoint_ops): Don't statically initialize.
(initialize_ada_catchpoint_ops): New.
(_initialize_ada_language): Call it.
* breakpoint.c (base_breakpoint_ops, bkpt_base_breakpoint_ops)
(bkpt_breakpoint_ops): Forward declare.
(catch_fork_breakpoint_ops, catch_vfork_breakpoint_ops)
(catch_syscall_breakpoint_ops, catch_exec_breakpoint_ops)
(ranged_breakpoint_ops, watchpoint_breakpoint_ops)
(masked_watchpoint_breakpoint_ops)
(gnu_v3_exception_catchpoint_ops): Don't statically initialize.
(dtor_catch_syscall, dtor_catch_exec): Indirect through the the
base class ops table.
(null_re_set, null_check_status, null_works_in_software_mode)
(null_resources_needed, null_print_one_detail): Delete.
(bkpt_dtor): Rename to ...
(base_breakpoint_dtor): ... this. Make static.
(bkpt_allocate_location): Rename to ...
(base_breakpoint_allocate_location): ... this. Make static.
(base_breakpoint_re_set): New.
(internal_error_pure_virtual_called): New.
(base_breakpoint_insert_location, base_breakpoint_remove_location)
(base_breakpoint_breakpoint_hit, base_breakpoint_check_status)
(base_breakpoint_works_in_software_mode)
(base_breakpoint_resources_needed, base_breakpoint_print_it)
(base_breakpoint_print_one_detail, base_breakpoint_print_mention)
(base_breakpoint_print_recreate): New functions.
(base_breakpoint_ops): New global.
(bkpt_re_set, bkpt_insert_location, bkpt_remove_location)
(bkpt_breakpoint_hit): Make static.
(bkpt_check_status): Delete.
(bkpt_resources_needed): Make static.
(bkpt_works_in_software_mode): Delete.
(bkpt_print_it, bkpt_print_mention, bkpt_print_recreate): Make
static.
(bkpt_breakpoint_ops, internal_breakpoint_ops)
(momentary_breakpoint_ops): Don't statically initialize.
(internal_bkpt_print_recreate, momentary_bkpt_print_recreate):
Delete.
(tracepoint_insert_location, tracepoint_remove_location)
(tracepoint_check_status, tracepoint_works_in_software_mode)
(tracepoint_print_it): Delete.
(tracepoint_breakpoint_ops): Don't statically initialize.
(initialize_breakpoint_ops): New.
(_initialize_breakpoint): Call it.
* breakpoint.h (null_re_set, null_works_in_software_mode)
(null_resources_needed, null_check_status, null_print_one_detail):
(bkpt_dtor, bkpt_allocate_location, bkpt_re_set)
(bkpt_insert_location, bkpt_remove_location, bkpt_breakpoint_hit)
(bkpt_check_status, bkpt_resources_needed)
(bkpt_works_in_software_mode, bkpt_print_it)
(null_print_one_detail, bkpt_print_mention, bkpt_print_recreate):
Delete declarations.
(initialize_breakpoint_ops): Declare.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 28fdd4e..ecd8007 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -1029,31 +1029,9 @@ extern void awatch_command_wrapper (char *, int, int); extern void rwatch_command_wrapper (char *, int, int); extern void tbreak_command (char *, int); -extern void null_re_set (struct breakpoint *b); -extern int null_works_in_software_mode (const struct breakpoint *b); -extern int null_resources_needed (const struct bp_location *bl); -extern void null_check_status (bpstat bs); -extern void null_print_one_detail (const struct breakpoint *self, - struct ui_out *uiout); - extern struct breakpoint_ops bkpt_breakpoint_ops; -extern void bkpt_dtor (struct breakpoint *self); -extern struct bp_location *bkpt_allocate_location (struct breakpoint *self); -extern void bkpt_re_set (struct breakpoint *b); -extern int bkpt_insert_location (struct bp_location *bl); -extern int bkpt_remove_location (struct bp_location *bl); -extern int bkpt_breakpoint_hit (const struct bp_location *bl, - struct address_space *aspace, - CORE_ADDR bp_addr); -extern void bkpt_check_status (bpstat bs); -extern int bkpt_resources_needed (const struct bp_location *bl); -extern int bkpt_works_in_software_mode (const struct breakpoint *b); -extern enum print_stop_action bkpt_print_it (bpstat bs); -extern void null_print_one_detail (const struct breakpoint *self, - struct ui_out *uiout); -extern void bkpt_print_mention (struct breakpoint *b); -extern void bkpt_print_recreate (struct breakpoint *tp, struct ui_file *fp); +extern void initialize_breakpoint_ops (void); /* Arguments to pass as context to some catch command handlers. */ #define CATCH_PERMANENT ((void *) (uintptr_t) 0) |