Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Aug 2006 15:43:57 GMT
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 103863 for review
Message-ID:  <200608141543.k7EFhvat094654@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=103863

Change 103863 by rdivacky@rdivacky_witten on 2006/08/14 15:43:06

	ifdef DEBUG some printfs

Affected files ...

.. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#49 edit

Differences ...

==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#49 (text+ko) ====

@@ -405,8 +405,11 @@
 		}
 	}
 
-	if (args->flags & CLONE_PARENT)
+	if (args->flags & CLONE_PARENT) {
+#ifdef DEBUG
 	   	printf("linux_clone: CLONE_PARENT\n");
+#endif
+	}
 	   	
 	if (args->flags & CLONE_THREAD) {
 #ifdef notyet
@@ -414,7 +417,9 @@
 	 	p2->p_pptr = td->td_proc->p_pptr;
 #endif
 	 	exit_signal = 0;
+#ifdef DEBUG
 	   	printf("linux_clone: CLONE_THREADS\n");
+#endif
 	}
 
 	if (args->flags & CLONE_CHILD_SETTID)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608141543.k7EFhvat094654>