mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-29 16:44:03 +00:00
Increased MAXTSIZ to 128MB...there are binaries that get quite large.
Increased DFLDSIZ to 128MB, as it is a better default. Reviewed by: jkh
This commit is contained in:
parent
ed7509ace4
commit
f4fabec6b0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36909
@ -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 */
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user