diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-04-20 15:35:18 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-05-30 15:07:26 -0400 |
commit | 2e5dbfab563c58b9be34d168e8aaa24878aab38c (patch) | |
tree | c4037adde2a345e6d6c189630eb5ff442fd403d3 /gdb/mi/mi-interp.c | |
parent | bf64d1d5bf718859b2687a0a011246b9cbbca9e1 (diff) | |
download | gdb-2e5dbfab563c58b9be34d168e8aaa24878aab38c.zip gdb-2e5dbfab563c58b9be34d168e8aaa24878aab38c.tar.gz gdb-2e5dbfab563c58b9be34d168e8aaa24878aab38c.tar.bz2 |
gdb: add interp::on_no_history method
Same as previous patches, but for no_history.
Change-Id: I06930fe7cb4082138c6c5496c5118fe4951c10da
Diffstat (limited to 'gdb/mi/mi-interp.c')
-rw-r--r-- | gdb/mi/mi-interp.c | 41 |
1 files changed, 4 insertions, 37 deletions
diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index cfe1516..795d70e 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -60,8 +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_on_no_history (void); - static void mi_new_thread (struct thread_info *t); static void mi_thread_exit (struct thread_info *t, int silent); static void mi_record_changed (struct inferior*, int, const char *, @@ -497,26 +495,6 @@ mi_inferior_removed (struct inferior *inf) } } -/* Return the MI interpreter, if it is active -- either because it's - the top-level interpreter or the interpreter executing the current - command. Returns NULL if the MI interpreter is not being used. */ - -static struct mi_interp * -find_mi_interp (void) -{ - struct mi_interp *mi; - - mi = as_mi_interp (top_level_interpreter ()); - if (mi != NULL) - return mi; - - mi = as_mi_interp (command_interp ()); - if (mi != NULL) - return mi; - - return NULL; -} - /* Observers for several run control events that print why the inferior has stopped to both the MI event channel and to the MI console. If the MI interpreter is not active, print nothing. */ @@ -542,21 +520,11 @@ mi_interp::on_exited (int status) print_exited_reason (this->cli_uiout, status); } -/* Observer for the no_history notification. */ - -static void -mi_on_no_history (void) +void +mi_interp::on_no_history () { - SWITCH_THRU_ALL_UIS () - { - struct mi_interp *mi = find_mi_interp (); - - if (mi == NULL) - continue; - - print_no_history_reason (mi->mi_uiout); - print_no_history_reason (mi->cli_uiout); - } + print_no_history_reason (this->mi_uiout); + print_no_history_reason (this->cli_uiout); } void @@ -1253,7 +1221,6 @@ _initialize_mi_interp () interp_factory_register (INTERP_MI4, mi_interp_factory); interp_factory_register (INTERP_MI, mi_interp_factory); - gdb::observers::no_history.attach (mi_on_no_history, "mi-interp"); gdb::observers::new_thread.attach (mi_new_thread, "mi-interp"); gdb::observers::thread_exit.attach (mi_thread_exit, "mi-interp"); gdb::observers::inferior_added.attach (mi_inferior_added, "mi-interp"); |