From f4fabec6b06196ec2bd1bf49c18371c47c3ef717 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Fri, 12 Jun 1998 09:10:22 +0000 Subject: [PATCH] Increased MAXTSIZ to 128MB...there are binaries that get quite large. Increased DFLDSIZ to 128MB, as it is a better default. Reviewed by: jkh --- sys/amd64/include/vmparam.h | 6 +++--- sys/i386/include/vmparam.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/amd64/include/vmparam.h b/sys/amd64/include/vmparam.h index 4f188d6a65d..d2e65e9c0fd 100644 --- a/sys/amd64/include/vmparam.h +++ b/sys/amd64/include/vmparam.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91 - * $Id: vmparam.h,v 1.28 1998/02/05 03:31:53 dyson Exp $ + * $Id: vmparam.h,v 1.29 1998/02/23 07:42:40 dyson Exp $ */ @@ -52,9 +52,9 @@ /* * Virtual memory related constants, all in bytes */ -#define MAXTSIZ (16UL*1024*1024) /* max text size */ +#define MAXTSIZ (128UL*1024*1024) /* max text size */ #ifndef DFLDSIZ -#define DFLDSIZ (64UL*1024*1024) /* initial data size limit */ +#define DFLDSIZ (128UL*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ #define MAXDSIZ (512UL*1024*1024) /* max data size */ diff --git a/sys/i386/include/vmparam.h b/sys/i386/include/vmparam.h index 4f188d6a65d..d2e65e9c0fd 100644 --- a/sys/i386/include/vmparam.h +++ b/sys/i386/include/vmparam.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91 - * $Id: vmparam.h,v 1.28 1998/02/05 03:31:53 dyson Exp $ + * $Id: vmparam.h,v 1.29 1998/02/23 07:42:40 dyson Exp $ */ @@ -52,9 +52,9 @@ /* * Virtual memory related constants, all in bytes */ -#define MAXTSIZ (16UL*1024*1024) /* max text size */ +#define MAXTSIZ (128UL*1024*1024) /* max text size */ #ifndef DFLDSIZ -#define DFLDSIZ (64UL*1024*1024) /* initial data size limit */ +#define DFLDSIZ (128UL*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ #define MAXDSIZ (512UL*1024*1024) /* max data size */