svn commit: r195532 - projects/mips/sys/sys

Warner Losh imp at FreeBSD.org
Fri Jul 10 07:20:08 UTC 2009


Author: imp
Date: Fri Jul 10 07:20:07 2009
New Revision: 195532
URL: http://svn.freebsd.org/changeset/base/195532

Log:
  Properly size things for n64 builds.

Modified:
  projects/mips/sys/sys/user.h

Modified: projects/mips/sys/sys/user.h
==============================================================================
--- projects/mips/sys/sys/user.h	Fri Jul 10 07:19:30 2009	(r195531)
+++ projects/mips/sys/sys/user.h	Fri Jul 10 07:20:07 2009	(r195532)
@@ -100,8 +100,12 @@
 #define	KINFO_PROC_SIZE	768
 #endif
 #ifdef __mips__
+#if defined(__mips_n64)
+#define	KINFO_PROC_SIZE	1088
+#else
 #define	KINFO_PROC_SIZE	816
 #endif
+#endif
 #ifdef __powerpc__
 #define	KINFO_PROC_SIZE	768
 #endif


More information about the svn-src-projects mailing list