From owner-cvs-all@FreeBSD.ORG Tue Dec 9 03:08:33 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FC8816A4CE; Tue, 9 Dec 2003 03:08:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3668343D40; Tue, 9 Dec 2003 03:04:37 -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 hB9B4aXJ079500; Tue, 9 Dec 2003 03:04:36 -0800 (PST) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hB9B4axM079499; Tue, 9 Dec 2003 03:04:36 -0800 (PST) (envelope-from mtm) Message-Id: <200312091104.hB9B4axM079499@repoman.freebsd.org> From: Mike Makonnen Date: Tue, 9 Dec 2003 03:04:36 -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 Makefile.inc thr_private.h thr_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Dec 2003 11:08:33 -0000 mtm 2003/12/09 03:04:36 PST FreeBSD src repository Modified files: lib/libthr/thread Makefile.inc thr_private.h thr_syscalls.c Log: o Add a wrapper around sigaction(2), so we can insert our own wrapper around signals. o Lock the process global signal action table. Revision Changes Path 1.3 +1 -0 src/lib/libthr/thread/Makefile.inc 1.23 +3 -0 src/lib/libthr/thread/thr_private.h 1.4 +58 -0 src/lib/libthr/thread/thr_syscalls.c