From owner-cvs-all@FreeBSD.ORG Wed Feb 11 16:08:39 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 7048E16A4CE; Wed, 11 Feb 2004 16:08:39 -0800 (PST) Received: from smtp01.syd.iprimus.net.au (smtp01.syd.iprimus.net.au [210.50.30.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 454F643D1F; Wed, 11 Feb 2004 16:08:39 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from robbins.dropbear.id.au (203.134.131.241) by smtp01.syd.iprimus.net.au (7.0.024) id 400C4DF4008FF0C4; Thu, 12 Feb 2004 11:08:37 +1100 Received: by robbins.dropbear.id.au (Postfix, from userid 1000) id C4DD141C0; Thu, 12 Feb 2004 11:08:17 +1100 (EST) Date: Thu, 12 Feb 2004 11:08:17 +1100 From: Tim Robbins To: Don Lewis Message-ID: <20040212000817.GA96921@cat.robbins.dropbear.id.au> References: <200402112206.i1BM632b047353@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200402112206.i1BM632b047353@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_exit.c sys_process.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: Thu, 12 Feb 2004 00:08:39 -0000 On Wed, Feb 11, 2004 at 02:06:02PM -0800, Don Lewis wrote: > truckman 2004/02/11 14:06:02 PST > > FreeBSD src repository > > Modified files: > sys/kern kern_exit.c sys_process.c > Log: > When reparenting a process to init, make sure that p_sigparent is > set to SIGCHLD. This avoids the creation of orphaned Linux-threaded > zombies that init is unable to reap. This can occur when the parent > process sets its SIGCHLD to SIG_IGN. Fix a similar situation in the > PT_DETACH code. Ugh. We really need a way to keep all of this Linux-specific code out of kern/. Tim