Increase the VM limits and initial sizes limits.
This commit is contained in:
parent
7b53f28cfb
commit
3a293934a9
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: vmparam.h,v 1.5 1994/10/26 08:24:46 cgd Exp $ */
|
||||
/* $NetBSD: vmparam.h,v 1.6 1995/02/14 18:52:29 phil Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
@ -65,18 +65,18 @@
|
||||
/*
|
||||
* Virtual memory related constants, all in bytes
|
||||
*/
|
||||
#define MAXTSIZ (8*1024*1024) /* max text size */
|
||||
#define MAXTSIZ (16*1024*1024) /* max text size */
|
||||
#ifndef DFLDSIZ
|
||||
#define DFLDSIZ (8*1024*1024) /* initial data size limit */
|
||||
#define DFLDSIZ (24*1024*1024) /* initial data size limit */
|
||||
#endif
|
||||
#ifndef MAXDSIZ
|
||||
#define MAXDSIZ (32*1024*1024) /* max data size */
|
||||
#define MAXDSIZ (128*1024*1024) /* max data size */
|
||||
#endif
|
||||
#ifndef DFLSSIZ
|
||||
#define DFLSSIZ (512*1024) /* initial stack size limit */
|
||||
#define DFLSSIZ (1*1024*1024) /* initial stack size limit */
|
||||
#endif
|
||||
#ifndef MAXSSIZ
|
||||
#define MAXSSIZ MAXDSIZ /* max stack size */
|
||||
#define MAXSSIZ (8*1024*1024) /* max stack size */
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user