diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-04-20 16:07:12 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-05-30 15:07:26 -0400 |
commit | 77cd03e27c547a5b5b7f086a0b537084eb399258 (patch) | |
tree | f38ecc8550cbfd0c4fd13d14de985daf83b764a0 /gdb/infrun.h | |
parent | 2736b77153629619fe75071356e16d9db51606ff (diff) | |
download | binutils-77cd03e27c547a5b5b7f086a0b537084eb399258.zip binutils-77cd03e27c547a5b5b7f086a0b537084eb399258.tar.gz binutils-77cd03e27c547a5b5b7f086a0b537084eb399258.tar.bz2 |
gdb: add interp::on_user_selected_context_changed method
Same as previous patches, but for user_selected_context_changed.
Change-Id: I40de15be897671227d4bcf3e747f0fd595f0d5be
Diffstat (limited to 'gdb/infrun.h')
-rw-r--r-- | gdb/infrun.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/infrun.h b/gdb/infrun.h index cbafc3e..a343d27 100644 --- a/gdb/infrun.h +++ b/gdb/infrun.h @@ -218,6 +218,9 @@ extern void notify_signal_received (gdb_signal sig); normally. */ extern void notify_normal_stop (bpstat *bs, int print_frame); +/* Notify interpreters and observers that the user focus has changed. */ +extern void notify_user_selected_context_changed (user_selected_what selection); + /* Several print_*_reason helper functions to print why the inferior has stopped to the passed in UIOUT. */ |