summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-07-03 21:19:09 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-07-03 21:19:09 +0000
commiteb8b984055f8fb6ff8166bb0fd825d0476a2bc93 (patch)
tree3da86c45136132455aa82d11f2f95d7f4a6b812b /sys/arch
parenteb5c5be45939713345204664aa86051b24effc40 (diff)
Change all variables definitions (int foo) in sys/sys/*.h to variable
declarations (extern int foo), and compensate in the appropriate locations.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc64/sparc64/machdep.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/sparc64/sparc64/machdep.c b/sys/arch/sparc64/sparc64/machdep.c
index c4e0764f119..380ec6c5a6e 100644
--- a/sys/arch/sparc64/sparc64/machdep.c
+++ b/sys/arch/sparc64/sparc64/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.44 2002/06/15 17:23:31 art Exp $ */
+/* $OpenBSD: machdep.c,v 1.45 2002/07/03 21:19:05 miod Exp $ */
/* $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */
/*-
@@ -153,6 +153,11 @@ extern vaddr_t avail_end;
#define BUFCACHEPERCENT 5
#endif
+#ifdef BUFPAGES
+int bufpages = BUFPAGES;
+#else
+int bufpages = 0;
+#endif
int bufcachepercent = BUFCACHEPERCENT;
int physmem;