PERFORCE change 107888 for review

Roman Divacky rdivacky at FreeBSD.org
Sat Oct 14 07:25:48 PDT 2006


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

Change 107888 by rdivacky at rdivacky_witten on 2006/10/14 14:25:30

	KASSERT that we found the emuldata

Affected files ...

.. //depot/projects/linuxolator/src/sys/compat/linux/linux_emul.c#8 edit

Differences ...

==== //depot/projects/linuxolator/src/sys/compat/linux/linux_emul.c#8 (text+ko) ====

@@ -313,6 +313,7 @@
 	/* do this only if the parent is exiting */
 	if (p->p_pptr->p_flag & P_WEXIT) {
    	   	em = em_find(p, EMUL_UNLOCKED);
+		KASSERT(em != NULL, ("linux_reparent: emuldata not found.\n"));
 		if (em->pdeath_signal != 0)
    		   	psignal(p, em->pdeath_signal);
 		EMUL_UNLOCK(&emul_lock);


More information about the p4-projects mailing list