diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:42:54 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:14 -0700 |
commit | 7d4f8efaf6b0c9dea516097442917deb89414090 (patch) | |
tree | eebfbd3044046bd36f1a01931a7ebf8bef8718d1 /gdb/target.h | |
parent | 035cad7f2e550abdaaa8b556143b351822f2940e (diff) | |
download | gdb-7d4f8efaf6b0c9dea516097442917deb89414090.zip gdb-7d4f8efaf6b0c9dea516097442917deb89414090.tar.gz gdb-7d4f8efaf6b0c9dea516097442917deb89414090.tar.bz2 |
convert to_program_signals
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_program_signals): Unconditionally delegate.
* target.h (struct target_ops) <to_program_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 468a5cd..421dd75 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -555,7 +555,8 @@ struct target_ops /* Documentation of this routine is provided with the corresponding target_* function. */ - void (*to_program_signals) (struct target_ops *, int, unsigned char *); + void (*to_program_signals) (struct target_ops *, int, unsigned char *) + TARGET_DEFAULT_IGNORE (); int (*to_thread_alive) (struct target_ops *, ptid_t ptid); void (*to_find_new_threads) (struct target_ops *); |