From owner-p4-projects@FreeBSD.ORG Sat Oct 14 11:13:41 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 047CD16A407; Sat, 14 Oct 2006 11:13:41 +0000 (UTC) X-Original-To: perforce@FreeBSD.org Delivered-To: perforce@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3B7B16A417 for ; Sat, 14 Oct 2006 11:13:40 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FC4543D46 for ; Sat, 14 Oct 2006 11:13:40 +0000 (GMT) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k9EBDeeC079545 for ; Sat, 14 Oct 2006 11:13:40 GMT (envelope-from rdivacky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9EBDeqI079541 for perforce@freebsd.org; Sat, 14 Oct 2006 11:13:40 GMT (envelope-from rdivacky@FreeBSD.org) Date: Sat, 14 Oct 2006 11:13:40 GMT Message-Id: <200610141113.k9EBDeqI079541@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rdivacky@FreeBSD.org using -f From: Roman Divacky To: Perforce Change Reviews Cc: Subject: PERFORCE change 107882 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Oct 2006 11:13:41 -0000 http://perforce.freebsd.org/chv.cgi?CH=107882 Change 107882 by rdivacky@rdivacky_witten on 2006/10/14 11:12:57 RFLINUXTHPN is not used anymore. Remove that. Affected files ... .. //depot/projects/linuxolator/src/sys/kern/kern_fork.c#3 edit .. //depot/projects/linuxolator/src/sys/sys/unistd.h#2 edit Differences ... ==== //depot/projects/linuxolator/src/sys/kern/kern_fork.c#3 (text+ko) ==== @@ -527,10 +527,7 @@ sigacts_copy(newsigacts, p1->p_sigacts); p2->p_sigacts = newsigacts; } - if (flags & RFLINUXTHPN) - p2->p_sigparent = SIGUSR1; - else - p2->p_sigparent = SIGCHLD; + p2->p_sigparent = SIGCHLD; p2->p_textvp = p1->p_textvp; p2->p_fd = fd; ==== //depot/projects/linuxolator/src/sys/sys/unistd.h#2 (text+ko) ==== @@ -169,7 +169,7 @@ #define RFCFDG (1<<12) /* close all fds, zero fd table */ #define RFTHREAD (1<<13) /* enable kernel thread support */ #define RFSIGSHARE (1<<14) /* share signal handlers */ -#define RFLINUXTHPN (1<<16) /* do linux clone exit parent notification */ +#define RFUNUSED (1<<16) /* UNUSED */ #define RFSTOPPED (1<<17) /* leave child in a stopped state */ #define RFHIGHPID (1<<18) /* use a pid higher then 10 (idleproc) */ #define RFPPWAIT (1<<31) /* parent sleeps until child exits (vfork) */