diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-04-21 09:45:30 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-05-30 15:07:26 -0400 |
commit | e7692320db944fd157978d9be9f18a86abb997b4 (patch) | |
tree | de4e345dd0090de729d027cfeebd1e22c2147a76 /gdb/mi/mi-interp.c | |
parent | c27ec5c09f3b94704688845e78861977d9bd4d71 (diff) | |
download | gdb-e7692320db944fd157978d9be9f18a86abb997b4.zip gdb-e7692320db944fd157978d9be9f18a86abb997b4.tar.gz gdb-e7692320db944fd157978d9be9f18a86abb997b4.tar.bz2 |
gdb: add interp::on_breakpoint_created method
Same idea as previous patches, but for breakpoint_created.
Change-Id: I614113c924edc243590018b8fb3bf69cb62215ef
Diffstat (limited to 'gdb/mi/mi-interp.c')
-rw-r--r-- | gdb/mi/mi-interp.c | 28 |
1 files changed, 7 insertions, 21 deletions
diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index f8eb6c5..398459c 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -60,7 +60,6 @@ static int mi_interp_query_hook (const char *ctlstr, va_list ap) static void mi_insert_notify_hooks (void); static void mi_remove_notify_hooks (void); -static void mi_breakpoint_created (struct breakpoint *b); static void mi_breakpoint_deleted (struct breakpoint *b); static void mi_breakpoint_modified (struct breakpoint *b); static void mi_command_param_changed (const char *param, const char *value); @@ -589,10 +588,8 @@ mi_print_breakpoint_for_event (struct mi_interp *mi, breakpoint *bp) } } -/* Emit notification about a created breakpoint. */ - -static void -mi_breakpoint_created (struct breakpoint *b) +void +mi_interp::on_breakpoint_created (breakpoint *b) { if (mi_suppress_notification.breakpoint) return; @@ -600,22 +597,13 @@ mi_breakpoint_created (struct breakpoint *b) if (b->number <= 0) return; - SWITCH_THRU_ALL_UIS () - { - struct mi_interp *mi = as_mi_interp (top_level_interpreter ()); - - if (mi == NULL) - continue; - - target_terminal::scoped_restore_terminal_state term_state; - target_terminal::ours_for_output (); + target_terminal::scoped_restore_terminal_state term_state; + target_terminal::ours_for_output (); - gdb_printf (mi->event_channel, - "breakpoint-created"); - mi_print_breakpoint_for_event (mi, b); + gdb_printf (this->event_channel, "breakpoint-created"); + mi_print_breakpoint_for_event (this, b); - gdb_flush (mi->event_channel); - } + gdb_flush (this->event_channel); } /* Emit notification about deleted breakpoint. */ @@ -1010,8 +998,6 @@ _initialize_mi_interp () interp_factory_register (INTERP_MI4, mi_interp_factory); interp_factory_register (INTERP_MI, mi_interp_factory); - gdb::observers::breakpoint_created.attach (mi_breakpoint_created, - "mi-interp"); gdb::observers::breakpoint_deleted.attach (mi_breakpoint_deleted, "mi-interp"); gdb::observers::breakpoint_modified.attach (mi_breakpoint_modified, |