The size of kinfo_proc on an alpha is 904 (not 640).

This commit is contained in:
Matt Jacob 2001-01-14 18:21:19 +00:00
parent 158eb2773f
commit 52f1d19f90
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71040

View File

@ -72,7 +72,11 @@
* to initialize it in two places: kern/kern_proc.c in the function
* fill_kinfo_proc and in lib/libkvm/kvm_proc.c in the function kvm_proclist.
*/
#ifdef __alpha__
#define KINFO_PROC_SIZE 904 /* the correct size for kinfo_proc */
#else
#define KINFO_PROC_SIZE 640 /* the correct size for kinfo_proc */
#endif
#define WMESGLEN 8 /* size of returned wchan message */
#define MTXNAMELEN 8 /* size of returned mutex name */