Subject: CVS commit: src/sys/kern
To: None <source-changes@netbsd.org>
From: Darren Reed <darrenr@netbsd.org>
List: source-changes
Date: 03/06/2003 17:31:15
Module Name:	src
Committed By:	darrenr
Date:		Thu Mar  6 15:31:15 UTC 2003

Modified Files:
	src/sys/kern: kern_sig.c

Log Message:
When unblocking threads, do not call setrunnable() on the thread we will
be returning because the code path that calls is will very likely call
setrunnable() again on the returned thread, leading to a panic because
the thread returned is already at LSRUN.  This fixes a problem where netbsd
would panic when using gdb (5.3) on a process with multiple lwp's like this:
% gdb program
(gdb) run
^C
(gdb) quit


To generate a diff of this commit:
cvs rdiff -r1.136 -r1.137 src/sys/kern/kern_sig.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.