aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 14:44:20 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:48:14 -0700
commit09b0dc2b57ce52fc478710797dabdf46bfd5abd1 (patch)
tree83757b4a6da72e41a1f5c0fdf6ce672b76491a65 /gdb/target.h
parent7d4f8efaf6b0c9dea516097442917deb89414090 (diff)
downloadgdb-09b0dc2b57ce52fc478710797dabdf46bfd5abd1.zip
gdb-09b0dc2b57ce52fc478710797dabdf46bfd5abd1.tar.gz
gdb-09b0dc2b57ce52fc478710797dabdf46bfd5abd1.tar.bz2
convert to_find_new_threads
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_find_new_threads): Unconditionally delegate. * target.h (struct target_ops) <to_find_new_threads>: Use TARGET_DEFAULT_RETURN.
Diffstat (limited to 'gdb/target.h')
-rw-r--r--gdb/target.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h
index 421dd75..7b36e48 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -559,7 +559,8 @@ struct target_ops
TARGET_DEFAULT_IGNORE ();
int (*to_thread_alive) (struct target_ops *, ptid_t ptid);
- void (*to_find_new_threads) (struct target_ops *);
+ void (*to_find_new_threads) (struct target_ops *)
+ TARGET_DEFAULT_IGNORE ();
char *(*to_pid_to_str) (struct target_ops *, ptid_t);
char *(*to_extra_thread_info) (struct target_ops *, struct thread_info *)
TARGET_DEFAULT_RETURN (0);