From e5c9fdd2b656d306972283e197d1559245221b19 Mon Sep 17 00:00:00 2001 From: Mark Alexander Date: Fri, 29 Jan 1999 02:19:27 +0000 Subject: Fix for PR 17980: * procfs.c (wait_fd): Handle deleted threads correctly. --- gdb/procfs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/procfs.c') diff --git a/gdb/procfs.c b/gdb/procfs.c index eb4cbfb..cd1bbe5 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -970,8 +970,9 @@ wait_fd () printf_filtered ("LWP %d exited.\n", (pi->pid >> 16) & 0xffff); close_proc_file (pi); + i--; /* don't skip deleted entry */ if (num_fds != 0) - continue; /* already another event to process */ + break; /* already another event to process */ else goto wait_again; /* wait for another event */ } -- cgit v1.1