summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-07-05 10:12:29 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-07-05 10:12:29 +0000
commit1853ec1bdb135555d58f6248f490bc10c23c08f0 (patch)
treea516d4f4c24ffd623d341ec1eacb10e39a2bba77 /sys/arch/alpha
parent62e8975901017f65d1114e50579720901c7690e4 (diff)
Get rid of REAL_CLISTS. It was never implemented and the tentacles are
everywhhere.
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r--sys/arch/alpha/alpha/machdep.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c
index 07a652b6182..792ecaa4e3a 100644
--- a/sys/arch/alpha/alpha/machdep.c
+++ b/sys/arch/alpha/alpha/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.48 2001/06/26 20:25:50 art Exp $ */
+/* $OpenBSD: machdep.c,v 1.49 2001/07/05 10:12:03 art Exp $ */
/* $NetBSD: machdep.c,v 1.206 2000/05/23 05:12:54 thorpej Exp $ */
/*-
@@ -76,9 +76,6 @@
#include <sys/device.h>
#include <sys/conf.h>
#include <sys/file.h>
-#ifdef REAL_CLISTS
-#include <sys/clist.h>
-#endif
#include <sys/timeout.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
@@ -829,9 +826,6 @@ allocsys(v)
#define valloc(name, type, num) \
(name) = (type *)v; v = (caddr_t)ALIGN((name)+(num))
-#ifdef REAL_CLISTS
- valloc(cfree, struct cblock, nclist);
-#endif
valloc(timeouts, struct timeout, ntimeout);
#ifdef SYSVSHM
valloc(shmsegs, struct shmid_ds, shminfo.shmmni);