From owner-cvs-all@FreeBSD.ORG Fri Aug 25 11:59:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 EF54E16A4DA; Fri, 25 Aug 2006 11:59:56 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A61A743D46; Fri, 25 Aug 2006 11:59:56 +0000 (GMT) (envelope-from netchild@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 k7PBxu2O047207; Fri, 25 Aug 2006 11:59:56 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7PBxu9S047206; Fri, 25 Aug 2006 11:59:56 GMT (envelope-from netchild) Message-Id: <200608251159.k7PBxu9S047206@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 25 Aug 2006 11:59:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/linux linux_machdep.c src/sys/amd64/linux32 linux32_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 25 Aug 2006 11:59:57 -0000 netchild 2006-08-25 11:59:56 UTC FreeBSD src repository Modified files: sys/i386/linux linux_machdep.c sys/amd64/linux32 linux32_machdep.c Log: Emulate what vfork does instead of using it in linux_vfork. This way we can do the stuff we need to do with linux processes at fork and don't panic the kernel at exit of the child. Submitted by: rdivacky Tested with: tst-vfork* (glibc regression tests) Tested by: netchild Revision Changes Path 1.16 +12 -1 src/sys/amd64/linux32/linux32_machdep.c 1.54 +13 -1 src/sys/i386/linux/linux_machdep.c