From owner-p4-projects@FreeBSD.ORG Sat Aug 5 12:55:13 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 620E216A4E1; Sat, 5 Aug 2006 12:55:13 +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 3900116A4DA for ; Sat, 5 Aug 2006 12:55:13 +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 E526843D53 for ; Sat, 5 Aug 2006 12:55:12 +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 k75CtCOK065720 for ; Sat, 5 Aug 2006 12:55:12 GMT (envelope-from rdivacky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k75CtCXr065717 for perforce@freebsd.org; Sat, 5 Aug 2006 12:55:12 GMT (envelope-from rdivacky@FreeBSD.org) Date: Sat, 5 Aug 2006 12:55:12 GMT Message-Id: <200608051255.k75CtCXr065717@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 103241 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, 05 Aug 2006 12:55:13 -0000 http://perforce.freebsd.org/chv.cgi?CH=103241 Change 103241 by rdivacky@rdivacky_witten on 2006/08/05 12:54:11 Copy out the pid as linux understands it, ie. group_pid in our world. This enables us to actually play a file in realplay. The realplay coredumps while playing thought. Affected files ... .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#31 edit Differences ... ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#31 (text+ko) ==== @@ -432,7 +432,7 @@ EMUL_RUNLOCK(&emul_lock); return (EINVAL); } - error = copyout(&p2->p_pid, args->parent_tidptr, sizeof(td->td_proc->p_pid)); + error = copyout(&em->shared->group_pid, args->parent_tidptr, sizeof(td->td_proc->p_pid)); if (error) { EMUL_RUNLOCK(&emul_lock); return (error);