Date: Thu, 6 Jul 2006 21:50:57 GMT From: "Wojciech A. Koszek" <wkoszek@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 100801 for review Message-ID: <200607062150.k66Lov6F051423@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=100801 Change 100801 by wkoszek@wkoszek_laptop on 2006/07/06 21:50:26 Make value of KINFO_PROC_SIZE more or less correct. It failed CTASSERT from kern_proc.c for now, but it's what I got while cross-compiling. Affected files ... .. //depot/projects/mips2/src/sys/sys/user.h#5 edit Differences ... ==== //depot/projects/mips2/src/sys/sys/user.h#5 (text+ko) ==== @@ -94,8 +94,11 @@ #ifdef __i386__ #define KINFO_PROC_SIZE 768 #endif +/* + * XXXMIPS: I'm not sure, but after cross-compiling my test-case I saw 768. + */ #ifdef __mips__ -#define KINFO_PROC_SIZE 792 +#define KINFO_PROC_SIZE 768 #endif #ifdef __powerpc__ #define KINFO_PROC_SIZE 768
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607062150.k66Lov6F051423>