PERFORCE change 103241 for review

Roman Divacky rdivacky at FreeBSD.org
Sat Aug 5 12:55:13 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=103241

Change 103241 by rdivacky at 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);


More information about the p4-projects mailing list