diff options
Diffstat (limited to 'sys/arch/solbourne')
-rw-r--r-- | sys/arch/solbourne/solbourne/machdep.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/arch/solbourne/solbourne/machdep.c b/sys/arch/solbourne/solbourne/machdep.c index 77d353bb009..0587d885e06 100644 --- a/sys/arch/solbourne/solbourne/machdep.c +++ b/sys/arch/solbourne/solbourne/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.11 2009/08/02 16:28:39 beck Exp $ */ +/* $OpenBSD: machdep.c,v 1.12 2009/08/09 10:40:18 blambert Exp $ */ /* OpenBSD: machdep.c,v 1.105 2005/04/11 15:13:01 deraadt Exp */ /* @@ -58,9 +58,6 @@ #include <sys/mount.h> #include <sys/msgbuf.h> #include <sys/syscallargs.h> -#ifdef SYSVMSG -#include <sys/msg.h> -#endif #include <sys/exec.h> #include <sys/sysctl.h> #include <sys/extent.h> @@ -253,12 +250,6 @@ allocsys(v) #define valloc(name, type, num) \ v = (caddr_t)(((name) = (type *)v) + (num)) -#ifdef SYSVMSG - valloc(msgpool, char, msginfo.msgmax); - valloc(msgmaps, struct msgmap, msginfo.msgseg); - valloc(msghdrs, struct msg, msginfo.msgtql); - valloc(msqids, struct msqid_ds, msginfo.msgmni); -#endif return (v); } |