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 | 44fbffc69d68e35f0e0bdbe8f6f186dc79924d11 (patch) | |
tree | 71121fe533060c428bb1f2c521f5dfd00380f50f /gdb/observable.h | |
parent | 2646bfa763e890c41474206344e3b02e1648c765 (diff) | |
download | gdb-44fbffc69d68e35f0e0bdbe8f6f186dc79924d11.zip gdb-44fbffc69d68e35f0e0bdbe8f6f186dc79924d11.tar.gz gdb-44fbffc69d68e35f0e0bdbe8f6f186dc79924d11.tar.bz2 |
gdb: add interp::on_record_changed method
Same idea as previous patches, but for record_changed
Change-Id: I5eeeacd703af8401c315060514c94e8e6439cc40
Diffstat (limited to 'gdb/observable.h')
-rw-r--r-- | gdb/observable.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/observable.h b/gdb/observable.h index 1ec9276..be7c6ca 100644 --- a/gdb/observable.h +++ b/gdb/observable.h @@ -88,18 +88,6 @@ extern observable<inferior */* exec_inf */, inferior */* follow_inf */> extern observable<inferior */* parent_inf */, inferior */* child_inf */, target_waitkind /* fork_kind */> inferior_forked; -/* The status of process record for inferior inferior in gdb has - changed. The process record is started if STARTED is true, and - the process record is stopped if STARTED is false. - - When STARTED is true, METHOD indicates the short name of the - method used for recording. If the method supports multiple - formats, FORMAT indicates which one is being used, otherwise it - is NULL. When STARTED is false, they are both NULL. */ -extern observable<struct inferior */* inferior */, int /* started */, - const char */* method */, const char */* format */> - record_changed; - /* The shared library specified by SOLIB has been loaded. Note that when gdb calls this observer, the library's symbols probably haven't been loaded yet. */ |