mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-11 13:02:10 +08:00
gdb: add interp::on_exited method
Same as previous patch, but for exited. Remove the exited observable, since nothing uses it anymore, and we don't have anything coming that will use it. Change-Id: I358cbea0159af56752dfee7510d6a86191e722bb
This commit is contained in:
parent
d6bd2ef5f4
commit
bf64d1d5bf
@ -140,19 +140,10 @@ cli_interp_base::on_signal_exited (gdb_signal sig)
|
||||
print_signal_exited_reason (this->interp_ui_out (), sig);
|
||||
}
|
||||
|
||||
/* Observer for the exited notification. */
|
||||
|
||||
static void
|
||||
cli_base_on_exited (int exitstatus)
|
||||
void
|
||||
cli_interp_base::on_exited (int status)
|
||||
{
|
||||
SWITCH_THRU_ALL_UIS ()
|
||||
{
|
||||
cli_interp_base *cli = as_cli_interp_base (top_level_interpreter ());
|
||||
if (cli == nullptr)
|
||||
continue;
|
||||
|
||||
print_exited_reason (cli->interp_ui_out (), exitstatus);
|
||||
}
|
||||
print_exited_reason (this->interp_ui_out (), status);
|
||||
}
|
||||
|
||||
/* Observer for the no_history notification. */
|
||||
@ -379,7 +370,6 @@ _initialize_cli_interp ()
|
||||
interp_factory_register (INTERP_CONSOLE, cli_interp_factory);
|
||||
|
||||
/* Note these all work for both the CLI and TUI interpreters. */
|
||||
gdb::observers::exited.attach (cli_base_on_exited, "cli-interp-base");
|
||||
gdb::observers::no_history.attach (cli_base_on_no_history, "cli-interp-base");
|
||||
gdb::observers::sync_execution_done.attach (cli_base_on_sync_execution_done,
|
||||
"cli-interp-base");
|
||||
|
@ -36,6 +36,7 @@ class cli_interp_base : public interp
|
||||
void on_signal_received (gdb_signal sig) override;
|
||||
void on_signal_exited (gdb_signal sig) override;
|
||||
void on_normal_stop (bpstat *bs, int print_frame) override;
|
||||
void on_exited (int status) override;
|
||||
|
||||
private:
|
||||
struct saved_output_files
|
||||
|
@ -5728,7 +5728,7 @@ handle_inferior_event (struct execution_control_state *ecs)
|
||||
/* Support the --return-child-result option. */
|
||||
return_child_result_value = ecs->ws.exit_status ();
|
||||
|
||||
gdb::observers::exited.notify (ecs->ws.exit_status ());
|
||||
interps_notify_exited (ecs->ws.exit_status ());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -422,6 +422,14 @@ interps_notify_normal_stop (bpstat *bs, int print_frame)
|
||||
interps_notify (&interp::on_normal_stop, bs, print_frame);
|
||||
}
|
||||
|
||||
/* See interps.h. */
|
||||
|
||||
void
|
||||
interps_notify_exited (int status)
|
||||
{
|
||||
interps_notify (&interp::on_exited, status);
|
||||
}
|
||||
|
||||
/* This just adds the "interpreter-exec" command. */
|
||||
void _initialize_interpreter ();
|
||||
void
|
||||
|
@ -94,6 +94,10 @@ class interp : public intrusive_list_node<interp>
|
||||
/* Notify the interpreter that the current inferior has stopped normally. */
|
||||
virtual void on_normal_stop (bpstat *bs, int print_frame) {}
|
||||
|
||||
/* Notify the intepreter that the current inferior has exited normally with
|
||||
status STATUS. */
|
||||
virtual void on_exited (int status) {}
|
||||
|
||||
private:
|
||||
/* The memory for this is static, it comes from literal strings (e.g. "cli"). */
|
||||
const char *m_name;
|
||||
@ -193,6 +197,10 @@ extern void interps_notify_signal_exited (gdb_signal sig);
|
||||
/* Notify all interpreters that the current inferior has stopped normally. */
|
||||
extern void interps_notify_normal_stop (bpstat *bs, int print_frame);
|
||||
|
||||
/* Notify all interpreters that the current inferior has exited normally with
|
||||
status STATUS. */
|
||||
extern void interps_notify_exited (int status);
|
||||
|
||||
/* well-known interpreters */
|
||||
#define INTERP_CONSOLE "console"
|
||||
#define INTERP_MI2 "mi2"
|
||||
|
@ -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_on_exited (int exitstatus);
|
||||
static void mi_on_no_history (void);
|
||||
|
||||
static void mi_new_thread (struct thread_info *t);
|
||||
@ -536,21 +535,11 @@ mi_interp::on_signal_exited (gdb_signal sig)
|
||||
print_signal_exited_reason (this->cli_uiout, sig);
|
||||
}
|
||||
|
||||
/* Observer for the exited notification. */
|
||||
|
||||
static void
|
||||
mi_on_exited (int exitstatus)
|
||||
void
|
||||
mi_interp::on_exited (int status)
|
||||
{
|
||||
SWITCH_THRU_ALL_UIS ()
|
||||
{
|
||||
struct mi_interp *mi = find_mi_interp ();
|
||||
|
||||
if (mi == NULL)
|
||||
continue;
|
||||
|
||||
print_exited_reason (mi->mi_uiout, exitstatus);
|
||||
print_exited_reason (mi->cli_uiout, exitstatus);
|
||||
}
|
||||
print_exited_reason (this->mi_uiout, status);
|
||||
print_exited_reason (this->cli_uiout, status);
|
||||
}
|
||||
|
||||
/* Observer for the no_history notification. */
|
||||
@ -1264,7 +1253,6 @@ _initialize_mi_interp ()
|
||||
interp_factory_register (INTERP_MI4, mi_interp_factory);
|
||||
interp_factory_register (INTERP_MI, mi_interp_factory);
|
||||
|
||||
gdb::observers::exited.attach (mi_on_exited, "mi-interp");
|
||||
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");
|
||||
|
@ -45,6 +45,7 @@ class mi_interp final : public interp
|
||||
void on_signal_received (gdb_signal sig) override;
|
||||
void on_signal_exited (gdb_signal sig) override;
|
||||
void on_normal_stop (struct bpstat *bs, int print_frame) override;
|
||||
void on_exited (int status) override;
|
||||
|
||||
/* MI's output channels */
|
||||
mi_console_file *out;
|
||||
|
@ -34,7 +34,6 @@ bool observer_debug = false;
|
||||
|
||||
DEFINE_OBSERVABLE (normal_stop);
|
||||
DEFINE_OBSERVABLE (signal_received);
|
||||
DEFINE_OBSERVABLE (exited);
|
||||
DEFINE_OBSERVABLE (no_history);
|
||||
DEFINE_OBSERVABLE (sync_execution_done);
|
||||
DEFINE_OBSERVABLE (command_error);
|
||||
|
@ -57,9 +57,6 @@ extern observable<struct bpstat */* bs */, int /* print_frame */> normal_stop;
|
||||
/* The inferior was stopped by a signal. */
|
||||
extern observable<enum gdb_signal /* siggnal */> signal_received;
|
||||
|
||||
/* The inferior program is finished. */
|
||||
extern observable<int /* exitstatus */> exited;
|
||||
|
||||
/* Reverse execution: target ran out of history info. */
|
||||
extern observable<> no_history;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user