svn commit: r204051 - head/sys/sys

Warner Losh imp at FreeBSD.org
Thu Feb 18 18:57:16 UTC 2010


Author: imp
Date: Thu Feb 18 18:57:15 2010
New Revision: 204051
URL: http://svn.freebsd.org/changeset/base/204051

Log:
  n64 has a different size for KINFO_PROC_SIZE.

Modified:
  head/sys/sys/user.h

Modified: head/sys/sys/user.h
==============================================================================
--- head/sys/sys/user.h	Thu Feb 18 18:35:09 2010	(r204050)
+++ head/sys/sys/user.h	Thu Feb 18 18:57:15 2010	(r204051)
@@ -100,8 +100,12 @@
 #define	KINFO_PROC_SIZE	768
 #endif
 #ifdef __mips__
+#ifdef __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-all mailing list