PERFORCE change 101014 for review

Roman Divacky rdivacky at FreeBSD.org
Sat Jul 8 13:56:31 UTC 2006


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

Change 101014 by rdivacky at rdivacky_witten on 2006/07/08 13:56:21

	Make the linux_futex.c compile after the move.

Affected files ...

.. //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.c#2 edit

Differences ...

==== //depot/projects/soc2006/rdivacky_linuxolator/compat/linux/linux_futex.c#2 (text+ko) ====

@@ -44,9 +44,14 @@
 #include <sys/mutex.h>
 #include <sys/malloc.h>
 
-#include <i386/linux/linux_futex.h>
-#include <i386/linux/linux.h>
-#include <i386/linux/linux_proto.h>
+#ifdef COMPAT_LINUX32
+#include <machine/../linux32/linux.h>
+#include <machine/../linux32/linux32_proto.h>
+#else
+#include <machine/../linux/linux.h>
+#include <machine/../linux/linux_proto.h>
+#endif
+#include <compat/linux/linux_futex.h>
 
 struct futex;
 


More information about the p4-projects mailing list