diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-09-08 17:28:19 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-09-08 17:28:19 +0000 |
commit | c17b5c702059c4b10937b3c5c726c4e0de7b7516 (patch) | |
tree | c8fb4f1b5a56cef7f1cf45d408b5dd2d0076bf78 /sys | |
parent | 32152d47adcdbe88a2495c8359832ab9de29db54 (diff) |
unbreak kvm for 32-bit machines.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/sysctl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index 8c46a2ea900..9eb21269f2c 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.h,v 1.17 1997/09/05 19:23:25 kstailey Exp $ */ +/* $OpenBSD: sysctl.h,v 1.18 1997/09/08 17:28:18 kstailey Exp $ */ /* $NetBSD: sysctl.h,v 1.16 1996/04/09 20:55:36 cgd Exp $ */ /* @@ -219,6 +219,7 @@ struct kinfo_proc { char e_login[MAXLOGNAME]; /* setlogin() name */ #define EMULNAMELEN 7 char e_emul[EMULNAMELEN+1]; /* syscall emulation name */ + u_int32_t e_spare[2]; /* XXX remove prior to release */ } kp_eproc; }; |