mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
Define KINFO_PROC_SIZE for ia64.
This commit is contained in:
parent
7f3a1ed2a7
commit
288c7d772c
1 changed files with 8 additions and 1 deletions
|
|
@ -74,9 +74,16 @@
|
|||
*/
|
||||
#ifdef __alpha__
|
||||
#define KINFO_PROC_SIZE 912 /* the correct size for kinfo_proc */
|
||||
#else
|
||||
#endif
|
||||
#ifdef __ia64__
|
||||
#define KINFO_PROC_SIZE 888
|
||||
#endif
|
||||
#ifdef __i386__
|
||||
#define KINFO_PROC_SIZE 648 /* the correct size for kinfo_proc */
|
||||
#endif
|
||||
#ifndef KINFO_PROC_SIZE
|
||||
#error "Unknown architecture"
|
||||
#endif
|
||||
#define WMESGLEN 8 /* size of returned wchan message */
|
||||
#define MTXNAMELEN 8 /* size of returned mutex name */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue