Bump limits on PowerPC. This allows large executables like parts of LLVM

to function.

Reviewed by:	grehan
Obtained from:	NetBSD
MFC after:	2 weeks
This commit is contained in:
Nathan Whitehorn 2009-12-02 06:49:22 +00:00
parent 1813b93dc1
commit 50b8e360ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200018

View File

@ -38,23 +38,23 @@
#define USRSTACK VM_MAXUSER_ADDRESS
#ifndef MAXTSIZ
#define MAXTSIZ (16*1024*1024) /* max text size */
#define MAXTSIZ (64*1024*1024) /* max text size */
#endif
#ifndef DFLDSIZ
#define DFLDSIZ (32*1024*1024) /* default data size */
#define DFLDSIZ (128*1024*1024) /* default data size */
#endif
#ifndef MAXDSIZ
#define MAXDSIZ (512*1024*1024) /* max data size */
#define MAXDSIZ (1*1024*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (1*1024*1024) /* default stack size */
#define DFLSSIZ (8*1024*1024) /* default stack size */
#endif
#ifndef MAXSSIZ
#define MAXSSIZ (32*1024*1024) /* max stack size */
#define MAXSSIZ (64*1024*1024) /* max stack size */
#endif
/*