From owner-cvs-src@FreeBSD.ORG Wed May 14 09:42:16 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 CF83637B401; Wed, 14 May 2003 09:42:16 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C23643F3F; Wed, 14 May 2003 09:42:13 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id h4EGg9m2026777; Wed, 14 May 2003 09:42:13 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h4EGg8uh026776; Wed, 14 May 2003 09:42:08 -0700 (PDT) Date: Wed, 14 May 2003 09:42:08 -0700 From: "David O'Brien" To: John Baldwin Message-ID: <20030514164208.GA26758@dragon.nuxi.com> References: <200305132036.h4DKa2rL045050@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305132036.h4DKa2rL045050@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha machdep.c src/sys/alpha/osf1 osf1_signal.c src/sys/amd64/amd64 machdep.c src/sys/compat/linprocfs linprocfs.c src/sys/compat/svr4 svr4_filio.c svr4_misc.c src/sys/i386/i386 machdep.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2003 16:42:17 -0000 On Tue, May 13, 2003 at 01:36:02PM -0700, John Baldwin wrote: > FreeBSD src repository > > Modified files: ..list of 32 changed files.. > Log: > - Merge struct procsig with struct sigacts. > - Move struct sigacts out of the u-area and malloc() it using the > M_SUBPROC malloc bucket. > - Add a small sigacts_*() API for managing sigacts structures: sigacts_alloc(), > sigacts_free(), sigacts_copy(), sigacts_share(), and sigacts_shared(). > - Remove the p_sigignore, p_sigacts, and p_sigcatch macros. > - Add a mutex to struct sigacts that protects all the members of the struct. > - Add sigacts locking. > - Remove Giant from nosys(), kill(), killpg(), and kern_sigaction() now > that sigacts is locked. > - Several in-kernel functions such as psignal(), tdsignal(), trapsignal(), > and thread_stopped() are now MP safe. Should we *really* be making large kernel changes like this during a release cycle??