diff options
Diffstat (limited to 'sys/conf/param.c')
-rw-r--r-- | sys/conf/param.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/conf/param.c b/sys/conf/param.c index 33b8ad7edf4..7d49d1e06dc 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -1,4 +1,4 @@ -/* $OpenBSD: param.c,v 1.13 2001/06/27 04:58:42 art Exp $ */ +/* $OpenBSD: param.c,v 1.14 2001/07/05 10:12:22 art Exp $ */ /* $NetBSD: param.c,v 1.16 1996/03/12 03:08:40 mrg Exp $ */ /* @@ -48,9 +48,6 @@ #include <sys/vnode.h> #include <sys/file.h> #include <sys/timeout.h> -#ifdef REAL_CLISTS -#include <sys/clist.h> -#endif #include <sys/mbuf.h> #include <ufs/ufs/quota.h> #include <sys/kernel.h> @@ -96,9 +93,6 @@ int maxproc = NPROC; int desiredvnodes = NVNODE; int maxfiles = 3 * (NPROC + MAXUSERS) + 80; int ntimeout = (16 + NPROC) * 2; -#ifdef REAL_CLISTS -int nclist = 60 + 12 * MAXUSERS; -#endif int nmbclusters = NMBCLUSTERS; #ifndef MBLOWAT @@ -178,7 +172,6 @@ int nbuf, nswbuf; * (if they've been externed everywhere else; hah!). */ struct timeout *timeouts; -struct cblock *cfree; struct buf *buf, *swbuf; char *buffers; |