diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-09-07 11:45:55 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-10-05 10:05:40 +0100 |
commit | b1f0f2841871f407d116e3e7f0dfca3e410633d4 (patch) | |
tree | afec47062fce39a7b8973b7b5d48703803525a40 /gdb/observable.c | |
parent | 1cb56ad3f3bd378a5adde648c56c48b0a293e2b9 (diff) | |
download | gdb-b1f0f2841871f407d116e3e7f0dfca3e410633d4.zip gdb-b1f0f2841871f407d116e3e7f0dfca3e410633d4.tar.gz gdb-b1f0f2841871f407d116e3e7f0dfca3e410633d4.tar.bz2 |
gdb/python: add a new gdb_exiting event
Add a new event, gdb.events.gdb_exiting, which is called once GDB
decides it is going to exit.
This event is not triggered in the case that GDB performs a hard
abort, for example, when handling an internal error and the user
decides to quit the debug session, or if GDB hits an unexpected,
fatal, signal.
This event is triggered if the user just types 'quit' at the command
prompt, or if GDB is run with '-batch' and has processed all of the
required commands.
The new event type is gdb.GdbExitingEvent, and it has a single
attribute exit_code, which is the value that GDB is about to exit
with.
The event is triggered before GDB starts dismantling any of its own
internal state, so, my expectation is that most Python calls should
work just fine at this point.
When considering this functionality I wondered about using the
'atexit' Python module. However, this is triggered when the Python
environment is shut down, which is done from a final cleanup. At
this point we don't know for sure what other GDB state has already
been cleaned up.
Diffstat (limited to 'gdb/observable.c')
-rw-r--r-- | gdb/observable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/observable.c b/gdb/observable.c index 51f5edb..b020076 100644 --- a/gdb/observable.c +++ b/gdb/observable.c @@ -77,6 +77,7 @@ DEFINE_OBSERVABLE (register_changed); DEFINE_OBSERVABLE (user_selected_context_changed); DEFINE_OBSERVABLE (source_styling_changed); DEFINE_OBSERVABLE (current_source_symtab_and_line_changed); +DEFINE_OBSERVABLE (gdb_exiting); } /* namespace observers */ } /* namespace gdb */ |