Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Jul 2006 13:56:30 GMT
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 101014 for review
Message-ID:  <200607081356.k68DuUPa041171@repoman.freebsd.org>

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

Change 101014 by rdivacky@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;
 



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