diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:46:03 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:15 -0700 |
commit | 770234d33bd301dd1893457a90e4b02cfec5c87a (patch) | |
tree | e0f91a43023a20ac814fe623f56fa055fe970567 /gdb/target.c | |
parent | 09b0dc2b57ce52fc478710797dabdf46bfd5abd1 (diff) | |
download | gdb-770234d33bd301dd1893457a90e4b02cfec5c87a.zip gdb-770234d33bd301dd1893457a90e4b02cfec5c87a.tar.gz gdb-770234d33bd301dd1893457a90e4b02cfec5c87a.tar.bz2 |
convert to_pid_to_str
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_pid_to_str): Unconditionally delegate.
(init_dummy_target): Don't initialize to_pid_to_str.
(default_pid_to_str): Rename from dummy_pid_to_str.
* target.h (struct target_ops) <to_pid_to_str>: Use
TARGET_DEFAULT_FUNC.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/gdb/target.c b/gdb/target.c index 59c593f..53a8e2b 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -89,6 +89,8 @@ static int dummy_find_memory_regions (struct target_ops *self, static char *dummy_make_corefile_notes (struct target_ops *self, bfd *ignore1, int *ignore2); +static char *default_pid_to_str (struct target_ops *ops, ptid_t ptid); + static int find_default_can_async_p (struct target_ops *ignore); static int find_default_is_async_p (struct target_ops *ignore); @@ -2540,15 +2542,7 @@ target_wait (ptid_t ptid, struct target_waitstatus *status, int options) char * target_pid_to_str (ptid_t ptid) { - struct target_ops *t; - - for (t = current_target.beneath; t != NULL; t = t->beneath) - { - if (t->to_pid_to_str != NULL) - return (*t->to_pid_to_str) (t, ptid); - } - - return normal_pid_to_str (ptid); + return (*current_target.to_pid_to_str) (¤t_target, ptid); } char * @@ -3500,7 +3494,7 @@ normal_pid_to_str (ptid_t ptid) } static char * -dummy_pid_to_str (struct target_ops *ops, ptid_t ptid) +default_pid_to_str (struct target_ops *ops, ptid_t ptid) { return normal_pid_to_str (ptid); } @@ -3536,7 +3530,6 @@ init_dummy_target (void) dummy_target.to_supports_non_stop = find_default_supports_non_stop; dummy_target.to_supports_disable_randomization = find_default_supports_disable_randomization; - dummy_target.to_pid_to_str = dummy_pid_to_str; dummy_target.to_stratum = dummy_stratum; dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero; dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero; |