diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-07-05 10:12:29 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-07-05 10:12:29 +0000 |
commit | 1853ec1bdb135555d58f6248f490bc10c23c08f0 (patch) | |
tree | a516d4f4c24ffd623d341ec1eacb10e39a2bba77 /sys/arch/mvme88k | |
parent | 62e8975901017f65d1114e50579720901c7690e4 (diff) |
Get rid of REAL_CLISTS. It was never implemented and the tentacles are
everywhhere.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/machdep.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c index 08919959227..028f4656e35 100644 --- a/sys/arch/mvme88k/mvme88k/machdep.c +++ b/sys/arch/mvme88k/mvme88k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.44 2001/07/01 23:27:52 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.45 2001/07/05 10:12:15 art Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -741,9 +741,6 @@ allocsys(v) #define valloc(name, type, num) \ v = (caddr_t)(((name) = (type *)v) + (num)) -#ifdef REAL_CLISTS - valloc(cfree, struct cblock, nclist); -#endif valloc(timeouts, struct timeout, ntimeout); #if 0 valloc(swapmap, struct map, nswapmap = maxproc * 2); |