mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-18 15:30:21 +00:00
Increased maximum and default 'size' limits to more reasonable values.
This commit is contained in:
parent
0ff4fbb502
commit
e10a618657
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=926
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91
|
||||
* $Id: vmparam.h,v 1.8 1993/11/07 17:43:17 wollman Exp $
|
||||
* $Id: vmparam.h,v 1.9 1993/12/19 00:50:19 wollman Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -65,18 +65,18 @@
|
||||
/*
|
||||
* Virtual memory related constants, all in bytes
|
||||
*/
|
||||
#define MAXTSIZ (6UL*1024*1024) /* max text size */
|
||||
#define MAXTSIZ (16UL*1024*1024) /* max text size */
|
||||
#ifndef DFLDSIZ
|
||||
#define DFLDSIZ (16UL*1024*1024) /* initial data size limit */
|
||||
#define DFLDSIZ (64UL*1024*1024) /* initial data size limit */
|
||||
#endif
|
||||
#ifndef MAXDSIZ
|
||||
#define MAXDSIZ (32UL*1024*1024) /* max data size */
|
||||
#define MAXDSIZ (128UL*1024*1024) /* max data size */
|
||||
#endif
|
||||
#ifndef DFLSSIZ
|
||||
#define DFLSSIZ (512UL*1024) /* initial stack size limit */
|
||||
#endif
|
||||
#ifndef MAXSSIZ
|
||||
#define MAXSSIZ (8UL*1024*1024) /* max stack size */
|
||||
#define MAXSSIZ (64UL*1024*1024) /* max stack size */
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91
|
||||
* $Id: vmparam.h,v 1.8 1993/11/07 17:43:17 wollman Exp $
|
||||
* $Id: vmparam.h,v 1.9 1993/12/19 00:50:19 wollman Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -65,18 +65,18 @@
|
||||
/*
|
||||
* Virtual memory related constants, all in bytes
|
||||
*/
|
||||
#define MAXTSIZ (6UL*1024*1024) /* max text size */
|
||||
#define MAXTSIZ (16UL*1024*1024) /* max text size */
|
||||
#ifndef DFLDSIZ
|
||||
#define DFLDSIZ (16UL*1024*1024) /* initial data size limit */
|
||||
#define DFLDSIZ (64UL*1024*1024) /* initial data size limit */
|
||||
#endif
|
||||
#ifndef MAXDSIZ
|
||||
#define MAXDSIZ (32UL*1024*1024) /* max data size */
|
||||
#define MAXDSIZ (128UL*1024*1024) /* max data size */
|
||||
#endif
|
||||
#ifndef DFLSSIZ
|
||||
#define DFLSSIZ (512UL*1024) /* initial stack size limit */
|
||||
#endif
|
||||
#ifndef MAXSSIZ
|
||||
#define MAXSSIZ (8UL*1024*1024) /* max stack size */
|
||||
#define MAXSSIZ (64UL*1024*1024) /* max stack size */
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user