Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Feb 2010 18:57:15 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r204051 - head/sys/sys
Message-ID:  <201002181857.o1IIvFrG049765@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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