svn commit: r266897 - user/dchagin/lemul/sys/amd64/linux32

Olivier Houchard cognet at FreeBSD.org
Fri May 30 18:04:11 UTC 2014


Author: cognet
Date: Fri May 30 18:04:10 2014
New Revision: 266897
URL: http://svnweb.freebsd.org/changeset/base/266897

Log:
  Include opt_compat.h, so that COMPAT_LINUX32 is defined, and we can access
  to the semop structs and functions.

Modified:
  user/dchagin/lemul/sys/amd64/linux32/linux32_machdep.c

Modified: user/dchagin/lemul/sys/amd64/linux32/linux32_machdep.c
==============================================================================
--- user/dchagin/lemul/sys/amd64/linux32/linux32_machdep.c	Fri May 30 18:03:16 2014	(r266896)
+++ user/dchagin/lemul/sys/amd64/linux32/linux32_machdep.c	Fri May 30 18:04:10 2014	(r266897)
@@ -31,6 +31,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include "opt_compat.h"
+
 #include <sys/param.h>
 #include <sys/kernel.h>
 #include <sys/systm.h>
@@ -72,6 +74,7 @@ __FBSDID("$FreeBSD$");
 #include <compat/linux/linux_util.h>
 #include <compat/linux/linux_emul.h>
 
+
 struct l_old_select_argv {
 	l_int		nfds;
 	l_uintptr_t	readfds;


More information about the svn-src-user mailing list