From 43fc25c87e2e768f17030ac44ea434dfc756add0 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Thu, 13 Jul 1995 21:40:22 +0000 Subject: * inftarg.c (child_thread_alive): New function to see if a particular thread is still running. (child_ops): Add child_thread_alive entry. * remote.c (remote_thread_alive): New function to see if a particular thread is still alive. (remote_ops): Add remote_thread_alive. * target.c (dummy_target): Add dummy entry for thread_alive. (cleanup_target): de_fault thread_alive too. (update_current_target): INHERIT thread_alive too. (debug_to_thread_alive): New function. (setup_target_debug): Add debug_to_thread_alive. * target.h (struct target_ops): Add to_thread_alive. (target_thread_alive): Define. * thread.c (info_threads_command): Don't call kill; use target_thread_alive instead. * config/nm-lynx.h (CHILD_THREAD_ALIVE): Define. * gdbserver/low-lynx.c (mythread_alive): New function. (mywait): Don't restart any threads after a new thread notification, let the generic code handle it. * gdbserver/low-sparc.c (mythread_alive): Dummy version. * gdbserver/low-sun3.c (mythread_alive): Likewise. * gdbserver/server.c (main): Handle thread_alive requests. * gdbserver/server.h (mythread_alive): Declare. * corelow.c (core_ops): Add dummy entry for thread_alive. * exec.c (exec_ops): Likewise. * m3-nat.c (m3_ops): Likewise. * monitor.c (monitor_ops): Likewise. * procfs.c (procfs_ops): Likewise. * remote-arc.c (arc_ops): Likewise. * remote-array.c (array_ops): Likewise. * remote-e7000.c (e7000_ops): Likewise. * remote-es.c (es1800_ops, es1800_child_ops): Likewise. * remote-mips.c (mips_ops): Likewise. * remote-pa.c (remote_hppro_ops): Likewise. * remote-sim.c (gdbsim_ops): Likewise. * sparcl-tdep.c (sparclite_ops): Likewise. More lynx-6100 work --- gdb/thread.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'gdb/thread.c') diff --git a/gdb/thread.c b/gdb/thread.c index 2e89274..6313173 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -280,12 +280,7 @@ info_threads_command (arg, from_tty) for (tp = thread_list; tp; tp = tp->next) { - /* FIXME: need to figure out a way to do this for remote too, - or else the print_stack_frame below will fail with a bogus - thread ID. */ - if (!STREQ (current_target.to_shortname, "remote") - && target_has_execution - && kill (tp->pid, 0) == -1) + if (! target_thread_alive (tp->pid)) { tp->pid = -1; /* Mark it as dead */ continue; -- cgit v1.1