From owner-cvs-all@FreeBSD.ORG Sat Mar 27 07:05:29 2004 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 6F87B16A4CE; Sat, 27 Mar 2004 07:05:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5121043D3F; Sat, 27 Mar 2004 07:05:29 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i2RF5TGe064132; Sat, 27 Mar 2004 07:05:29 -0800 (PST) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i2RF5Sff064131; Sat, 27 Mar 2004 07:05:28 -0800 (PST) (envelope-from mtm) Message-Id: <200403271505.i2RF5Sff064131@repoman.freebsd.org> From: Mike Makonnen Date: Sat, 27 Mar 2004 07:05:28 -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_sig.c 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: Sat, 27 Mar 2004 15:05:29 -0000 mtm 2004/03/27 07:05:28 PST FreeBSD src repository Modified files: lib/libthr/thread thr_sig.c thr_syscalls.c Log: o Since we're not using signals for thread synchronization anymore, sigprocmask no longer needs to be wrapped. o raise(3) is applied to the calling thread in a threaded program. o In the sigaction wrapper reference the correct structure. o Don't treat SIGTHR especially anymore (infact it won't exist in a little while). Revision Changes Path 1.10 +0 -30 src/lib/libthr/thread/thr_sig.c 1.5 +17 -4 src/lib/libthr/thread/thr_syscalls.c