diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2011-01-07 03:15:40 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2011-01-07 03:15:40 +0000 |
commit | fea76d25d86093f7282ff2412a1f32c2e7908250 (patch) | |
tree | d4d79c2f0a577bd2630ba1d0bfe9b275e2de499c | |
parent | 9344be3acd813693832843616984d97eec7e135d (diff) |
increase i386 maxdsiz to 2GB. comments from ariane deraadt kettenis.
ok deraadt
-rw-r--r-- | sys/arch/i386/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/vmparam.h b/sys/arch/i386/include/vmparam.h index a0ab86fb1c6..11cd911f1bf 100644 --- a/sys/arch/i386/include/vmparam.h +++ b/sys/arch/i386/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.45 2010/12/15 05:30:19 tedu Exp $ */ +/* $OpenBSD: vmparam.h,v 1.46 2011/01/07 03:15:39 tedu Exp $ */ /* $NetBSD: vmparam.h,v 1.15 1994/10/27 04:16:34 cgd Exp $ */ /*- @@ -63,7 +63,7 @@ #define DFLDSIZ (64*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ -#define MAXDSIZ (1024*1024*1024) /* max data size */ +#define MAXDSIZ (2UL*1024*1024*1024) /* max data size */ #endif #ifndef BRKSIZ #define BRKSIZ (1024*1024*1024) /* heap gap size */ |