aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2019-06-18 13:08:36 +0100
committerAndrew Burgess <andrew.burgess@embecosm.com>2019-06-18 22:18:33 +0100
commit494986d596a977e1d24f9f068696f5b3e993ebf7 (patch)
treed2b2abaf645b4b15fdb7d761dc49504c714dd7a1 /gdb/top.c
parent0ed4690a67e2c4703d9088312de652d0d5f1aaaf (diff)
downloadgdb-494986d596a977e1d24f9f068696f5b3e993ebf7.zip
gdb-494986d596a977e1d24f9f068696f5b3e993ebf7.tar.gz
gdb-494986d596a977e1d24f9f068696f5b3e993ebf7.tar.bz2
gdb: Remove use of deprecated_interactive_hook
The deprecated_interactive_hook is not used within GDB. It is used in gdbtk, however this patch removes that use: https://sourceware.org/ml/insight/2019-q2/msg00001.html So I think there is no longer a reason to keep this hook around. This patch removes it. There should be no user visible changes after this commit. gdb/ChangeLog: * defs.h (deprecated_interactive_hook): Delete declaration. * interps.c (clear_interpreter_hooks): Remove use of deprecated_interactive_hook. * top.c (deprecated_interactive_hook): Delete definition. * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/top.c b/gdb/top.c
index 857207c..be736b0 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -240,11 +240,6 @@ void (*deprecated_readline_end_hook) (void);
void (*deprecated_attach_hook) (void);
void (*deprecated_detach_hook) (void);
-/* Called during long calculations to allow GUI to repair window
- damage, and to check for stop buttons, etc... */
-
-void (*deprecated_interactive_hook) (void);
-
/* Called when going to wait for the target. Usually allows the GUI
to run while waiting for target events. */