summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/include
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2010-12-15 05:30:20 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2010-12-15 05:30:20 +0000
commitea79f035d22993eb20b874e04a422397bf0f3be2 (patch)
treef06a86f993aee58437bd89ec983ba1ebc642d60b /sys/arch/sparc/include
parentb38aff3bb464aa95b8b2f90afe716b60ec2cb942 (diff)
oops, i forgot to check in the BRKSIZ define in uvm, but deraadt thinks
its better as a per arch MD define anyway. all default to MAXDSIZ as before.
Diffstat (limited to 'sys/arch/sparc/include')
-rw-r--r--sys/arch/sparc/include/vmparam.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/vmparam.h b/sys/arch/sparc/include/vmparam.h
index 53a6ba9c401..2b230acac3f 100644
--- a/sys/arch/sparc/include/vmparam.h
+++ b/sys/arch/sparc/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.35 2010/06/27 03:03:48 thib Exp $ */
+/* $OpenBSD: vmparam.h,v 1.36 2010/12/15 05:30:19 tedu Exp $ */
/* $NetBSD: vmparam.h,v 1.13 1997/07/12 16:20:03 perry Exp $ */
/*
@@ -67,6 +67,9 @@
#ifndef MAXDSIZ
#define MAXDSIZ (128*1024*1024) /* max data size */
#endif
+#ifndef BRKSIZ
+#define BRKSIZ MAXDSIZ /* heap gap size */
+#endif
#ifndef DFLSSIZ
#define DFLSSIZ (512*1024) /* initial stack size limit */
#endif