mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
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.
This commit is contained in:
parent
0ed4690a67
commit
494986d596
@ -1,3 +1,11 @@
|
||||
2019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* 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.
|
||||
|
||||
2019-06-18 Tom de Vries <tdevries@suse.de>
|
||||
|
||||
PR gdb/24515
|
||||
|
@ -600,7 +600,6 @@ extern int (*deprecated_query_hook) (const char *, va_list)
|
||||
ATTRIBUTE_FPTR_PRINTF(1,0);
|
||||
extern void (*deprecated_warning_hook) (const char *, va_list)
|
||||
ATTRIBUTE_FPTR_PRINTF(1,0);
|
||||
extern void (*deprecated_interactive_hook) (void);
|
||||
extern void (*deprecated_readline_begin_hook) (const char *, ...)
|
||||
ATTRIBUTE_FPTR_PRINTF_1;
|
||||
extern char *(*deprecated_readline_hook) (const char *);
|
||||
|
@ -353,7 +353,6 @@ clear_interpreter_hooks (void)
|
||||
/*print_frame_more_info_hook = 0; */
|
||||
deprecated_query_hook = 0;
|
||||
deprecated_warning_hook = 0;
|
||||
deprecated_interactive_hook = 0;
|
||||
deprecated_readline_begin_hook = 0;
|
||||
deprecated_readline_hook = 0;
|
||||
deprecated_readline_end_hook = 0;
|
||||
|
@ -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. */
|
||||
|
||||
|
@ -678,9 +678,6 @@ maybe_quit (void)
|
||||
quit ();
|
||||
|
||||
quit_handler ();
|
||||
|
||||
if (deprecated_interactive_hook)
|
||||
deprecated_interactive_hook ();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user