From owner-cvs-src@FreeBSD.ORG Tue Dec 9 03:12:57 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 974DB16A4CF; Tue, 9 Dec 2003 03:12:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BB8E43D4F; Tue, 9 Dec 2003 03:12:27 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hB9BCBXJ079847; Tue, 9 Dec 2003 03:12:11 -0800 (PST) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hB9BCBdi079846; Tue, 9 Dec 2003 03:12:11 -0800 (PST) (envelope-from mtm) Message-Id: <200312091112.hB9BCBdi079846@repoman.freebsd.org> From: Mike Makonnen Date: Tue, 9 Dec 2003 03:12:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_cond.c thr_mutex.c thr_private.h thr_sig.c thr_spinlock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Dec 2003 11:12:57 -0000 mtm 2003/12/09 03:12:11 PST FreeBSD src repository Modified files: lib/libthr/thread thr_cond.c thr_mutex.c thr_private.h thr_sig.c thr_spinlock.c Log: Fix the wrapper function around signals so that a signal handling thread on one of the mutex or condition variable queues is removed from those queues before the real signal handler is called. Revision Changes Path 1.10 +0 -9 src/lib/libthr/thread/thr_cond.c 1.18 +1 -25 src/lib/libthr/thread/thr_mutex.c 1.24 +1 -0 src/lib/libthr/thread/thr_private.h 1.7 +44 -24 src/lib/libthr/thread/thr_sig.c 1.8 +11 -0 src/lib/libthr/thread/thr_spinlock.c