diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2010-12-15 05:30:20 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2010-12-15 05:30:20 +0000 |
commit | ea79f035d22993eb20b874e04a422397bf0f3be2 (patch) | |
tree | f06a86f993aee58437bd89ec983ba1ebc642d60b /sys/arch/sparc64/include/vmparam.h | |
parent | b38aff3bb464aa95b8b2f90afe716b60ec2cb942 (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/sparc64/include/vmparam.h')
-rw-r--r-- | sys/arch/sparc64/include/vmparam.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/vmparam.h b/sys/arch/sparc64/include/vmparam.h index 5c8aa20c079..9ef064a0fee 100644 --- a/sys/arch/sparc64/include/vmparam.h +++ b/sys/arch/sparc64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.21 2010/06/28 15:21:59 kettenis Exp $ */ +/* $OpenBSD: vmparam.h,v 1.22 2010/12/15 05:30:19 tedu Exp $ */ /* $NetBSD: vmparam.h,v 1.18 2001/05/01 02:19:19 thorpej Exp $ */ /* @@ -74,6 +74,9 @@ #ifndef MAXDSIZ #define MAXDSIZ (8L*1024*1024*1024) /* max data size */ #endif +#ifndef BRKSIZ +#define BRKSIZ MAXDSIZ /* heap gap size */ +#endif #ifndef DFLSSIZ #define DFLSSIZ (2L*1024*1024) /* initial stack size limit */ #endif |