From owner-p4-projects@FreeBSD.ORG Tue Aug 8 13:34:52 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 5004516A4E6; Tue, 8 Aug 2006 13:34:52 +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 2181216A4DD for ; Tue, 8 Aug 2006 13:34:52 +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 D3EAE43D55 for ; Tue, 8 Aug 2006 13:34:51 +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 k78DYp9U097450 for ; Tue, 8 Aug 2006 13:34:51 GMT (envelope-from rdivacky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k78DYplO097447 for perforce@freebsd.org; Tue, 8 Aug 2006 13:34:51 GMT (envelope-from rdivacky@FreeBSD.org) Date: Tue, 8 Aug 2006 13:34:51 GMT Message-Id: <200608081334.k78DYplO097447@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 103441 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: Tue, 08 Aug 2006 13:34:52 -0000 http://perforce.freebsd.org/chv.cgi?CH=103441 Change 103441 by rdivacky@rdivacky_witten on 2006/08/08 13:34:23 Copyout bsdpid (ie. linuxtid) in the cases of PARENT/CHILD_SETTID. Also make the file compilable with -DDEBUG. Affected files ... .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#33 edit Differences ... ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#33 (text+ko) ==== @@ -433,7 +433,7 @@ EMUL_RUNLOCK(&emul_lock); return (EINVAL); } - error = copyout(&em->shared->group_pid, args->parent_tidptr, sizeof(em->shared->group_pid)); + error = copyout(&p2->p_pid, args->parent_tidptr, sizeof(p2->p_pid)); if (error) { EMUL_RUNLOCK(&emul_lock); return (error); @@ -1329,6 +1329,9 @@ { struct linux_emuldata *em; int error = 0; +#ifdef DEBUG + struct thread *td = FIRST_THREAD_IN_PROC(p); +#endif if (p->p_sysent != &elf_linux_sysvec) return; @@ -1344,7 +1347,7 @@ } if (em->child_set_tid != NULL) - error = copyout(&em->shared->group_pid, em->child_set_tid, sizeof(em->shared->group_pid)); + error = copyout(&p->p_pid, em->child_set_tid, sizeof(p->p_pid)); EMUL_RUNLOCK(&emul_lock); return;