diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-04-20 14:46:58 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-05-30 15:07:26 -0400 |
commit | bf64d1d5bf718859b2687a0a011246b9cbbca9e1 (patch) | |
tree | 9f77aeb905a2235897e26355aa1cce894a7c0d6c /gdb/observable.h | |
parent | d6bd2ef5f4c2027a68810f4a9dbe871b61e819ab (diff) | |
download | fsf-binutils-gdb-bf64d1d5bf718859b2687a0a011246b9cbbca9e1.zip fsf-binutils-gdb-bf64d1d5bf718859b2687a0a011246b9cbbca9e1.tar.gz fsf-binutils-gdb-bf64d1d5bf718859b2687a0a011246b9cbbca9e1.tar.bz2 |
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
Diffstat (limited to 'gdb/observable.h')
-rw-r--r-- | gdb/observable.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/observable.h b/gdb/observable.h index aaf1ddd..25af2da 100644 --- a/gdb/observable.h +++ b/gdb/observable.h @@ -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; |