mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +08:00
Eliminate target_check_pending_interrupt
This is no longer called anywhere. gdb/ChangeLog: 2016-04-12 Pedro Alves <palves@redhat.com> * target.c (target_check_pending_interrupt): Delete. * target.h (struct target_ops) <to_check_pending_interrupt>: Remove method. (target_check_pending_interrupt): Remove declaration. * target-delegates.c: Regenerate.
This commit is contained in:
10
gdb/target.h
10
gdb/target.h
@ -647,8 +647,6 @@ struct target_ops
|
||||
TARGET_DEFAULT_IGNORE ();
|
||||
void (*to_pass_ctrlc) (struct target_ops *)
|
||||
TARGET_DEFAULT_FUNC (default_target_pass_ctrlc);
|
||||
void (*to_check_pending_interrupt) (struct target_ops *)
|
||||
TARGET_DEFAULT_IGNORE ();
|
||||
void (*to_rcmd) (struct target_ops *,
|
||||
const char *command, struct ui_file *output)
|
||||
TARGET_DEFAULT_FUNC (default_rcmd);
|
||||
@ -1729,14 +1727,6 @@ extern void target_pass_ctrlc (void);
|
||||
target_interrupt. */
|
||||
extern void default_target_pass_ctrlc (struct target_ops *ops);
|
||||
|
||||
/* Some targets install their own SIGINT handler while the target is
|
||||
running. This method is called from the QUIT macro to give such
|
||||
targets a chance to process a Ctrl-C. The target may e.g., choose
|
||||
to interrupt the (potentially) long running operation, or give up
|
||||
waiting and disconnect. */
|
||||
|
||||
extern void target_check_pending_interrupt (void);
|
||||
|
||||
/* Send the specified COMMAND to the target's monitor
|
||||
(shell,interpreter) for execution. The result of the query is
|
||||
placed in OUTBUF. */
|
||||
|
Reference in New Issue
Block a user