diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:42:10 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:13 -0700 |
commit | 035cad7f2e550abdaaa8b556143b351822f2940e (patch) | |
tree | 5dcd14d85c868f4d0e747786c637b64544a88abf /gdb/target.h | |
parent | 8d65703517069975d781d7957d90a9de3ce94e5d (diff) | |
download | gdb-035cad7f2e550abdaaa8b556143b351822f2940e.zip gdb-035cad7f2e550abdaaa8b556143b351822f2940e.tar.gz gdb-035cad7f2e550abdaaa8b556143b351822f2940e.tar.bz2 |
convert to_pass_signals
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_pass_signals): Unconditionally delegate.
* target.h (struct target_ops) <to_pass_signals>: Use
TARGET_DEFAULT_IGNORE.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h index 884abf1..468a5cd 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -550,7 +550,8 @@ struct target_ops /* Documentation of this routine is provided with the corresponding target_* macro. */ - void (*to_pass_signals) (struct target_ops *, int, unsigned char *); + void (*to_pass_signals) (struct target_ops *, int, unsigned char *) + TARGET_DEFAULT_IGNORE (); /* Documentation of this routine is provided with the corresponding target_* function. */ |