Skip to content

Commit

Permalink
Define KINFO_PROC_SIZE for ia64.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfr authored and dfr committed Mar 9, 2001
1 parent 0edd53c commit a64bcb9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion sys/sys/user.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand Down

0 comments on commit a64bcb9

Please sign in to comment.