diff options
Diffstat (limited to 'gdb/target-delegates.c')
-rw-r--r-- | gdb/target-delegates.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c index fe989ff..9beb5ff 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -1302,23 +1302,23 @@ debug_thread_alive (struct target_ops *self, ptid_t arg1) } static void -delegate_find_new_threads (struct target_ops *self) +delegate_update_thread_list (struct target_ops *self) { self = self->beneath; - self->to_find_new_threads (self); + self->to_update_thread_list (self); } static void -tdefault_find_new_threads (struct target_ops *self) +tdefault_update_thread_list (struct target_ops *self) { } static void -debug_find_new_threads (struct target_ops *self) +debug_update_thread_list (struct target_ops *self) { - fprintf_unfiltered (gdb_stdlog, "-> %s->to_find_new_threads (...)\n", debug_target.to_shortname); - debug_target.to_find_new_threads (&debug_target); - fprintf_unfiltered (gdb_stdlog, "<- %s->to_find_new_threads (", debug_target.to_shortname); + fprintf_unfiltered (gdb_stdlog, "-> %s->to_update_thread_list (...)\n", debug_target.to_shortname); + debug_target.to_update_thread_list (&debug_target); + fprintf_unfiltered (gdb_stdlog, "<- %s->to_update_thread_list (", debug_target.to_shortname); target_debug_print_struct_target_ops_p (&debug_target); fputs_unfiltered (")\n", gdb_stdlog); } @@ -3828,8 +3828,8 @@ install_delegators (struct target_ops *ops) ops->to_program_signals = delegate_program_signals; if (ops->to_thread_alive == NULL) ops->to_thread_alive = delegate_thread_alive; - if (ops->to_find_new_threads == NULL) - ops->to_find_new_threads = delegate_find_new_threads; + if (ops->to_update_thread_list == NULL) + ops->to_update_thread_list = delegate_update_thread_list; if (ops->to_pid_to_str == NULL) ops->to_pid_to_str = delegate_pid_to_str; if (ops->to_extra_thread_info == NULL) @@ -4062,7 +4062,7 @@ install_dummy_methods (struct target_ops *ops) ops->to_pass_signals = tdefault_pass_signals; ops->to_program_signals = tdefault_program_signals; ops->to_thread_alive = tdefault_thread_alive; - ops->to_find_new_threads = tdefault_find_new_threads; + ops->to_update_thread_list = tdefault_update_thread_list; ops->to_pid_to_str = default_pid_to_str; ops->to_extra_thread_info = tdefault_extra_thread_info; ops->to_thread_name = tdefault_thread_name; @@ -4205,7 +4205,7 @@ init_debug_target (struct target_ops *ops) ops->to_pass_signals = debug_pass_signals; ops->to_program_signals = debug_program_signals; ops->to_thread_alive = debug_thread_alive; - ops->to_find_new_threads = debug_find_new_threads; + ops->to_update_thread_list = debug_update_thread_list; ops->to_pid_to_str = debug_pid_to_str; ops->to_extra_thread_info = debug_extra_thread_info; ops->to_thread_name = debug_thread_name; |