n64 has a different size for KINFO_PROC_SIZE.

This commit is contained in:
Warner Losh 2010-02-18 18:57:15 +00:00
parent ee3e6d9906
commit ae67f5502d

View File

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