diff options
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/alpha/machdep.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c index f2d1f09302d..fb6be61c516 100644 --- a/sys/arch/alpha/alpha/machdep.c +++ b/sys/arch/alpha/alpha/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.117 2009/02/04 17:19:16 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.118 2009/08/09 10:40:17 blambert Exp $ */ /* $NetBSD: machdep.c,v 1.210 2000/06/01 17:12:38 thorpej Exp $ */ /*- @@ -87,9 +87,6 @@ #ifndef NO_IEEE #include <machine/fpu.h> #endif -#ifdef SYSVMSG -#include <sys/msg.h> -#endif #include <sys/timetc.h> #include <sys/mount.h> @@ -817,15 +814,6 @@ allocsys(v) #define valloc(name, type, num) \ (name) = (type *)v; v = (caddr_t)ALIGN((name)+(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 - -#undef valloc - return v; } |