Module Name: src Committed By: matt Date: Mon Feb 25 16:12:13 UTC 2013
Modified Files: src/sys/arch/arm/include/arm32: vmparam.h Log Message: Bump max text/data/stack sizes to more reasonable values. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/sys/arch/arm/include/arm32/vmparam.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/arm/include/arm32/vmparam.h diff -u src/sys/arch/arm/include/arm32/vmparam.h:1.27 src/sys/arch/arm/include/arm32/vmparam.h:1.28 --- src/sys/arch/arm/include/arm32/vmparam.h:1.27 Thu Aug 16 07:25:37 2012 +++ src/sys/arch/arm/include/arm32/vmparam.h Mon Feb 25 16:12:13 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: vmparam.h,v 1.27 2012/08/16 07:25:37 matt Exp $ */ +/* $NetBSD: vmparam.h,v 1.28 2013/02/25 16:12:13 matt Exp $ */ /* * Copyright (c) 2001, 2002 Wasabi Systems, Inc. @@ -55,18 +55,18 @@ * Note that MAXTSIZ can't be larger than 32M, otherwise the compiler * would have to be changed to not generate "bl" instructions. */ -#define MAXTSIZ (16*1024*1024) /* max text size */ +#define MAXTSIZ (64*1024*1024) /* max text size */ #ifndef DFLDSIZ #define DFLDSIZ (128*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ -#define MAXDSIZ (512*1024*1024) /* max data size */ +#define MAXDSIZ (1024*1024*1024) /* max data size */ #endif #ifndef DFLSSIZ #define DFLSSIZ (2*1024*1024) /* initial stack size limit */ #endif #ifndef MAXSSIZ -#define MAXSSIZ (8*1024*1024) /* max stack size */ +#define MAXSSIZ (32*1024*1024) /* max stack size */ #endif /*