Properly size things for n64 builds.

This commit is contained in:
Warner Losh 2009-07-10 07:20:07 +00:00
parent f0bb71694b
commit 9690fcee63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/mips/; revision=195532

View File

@ -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