Bring limits up to 'modern' standards.

This commit is contained in:
fvdl 1997-03-05 23:51:47 +00:00
parent 3ee3460f02
commit b754b514dc
1 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: vmparam.h,v 1.17 1996/12/09 22:49:42 fvdl Exp $ */
/* $NetBSD: vmparam.h,v 1.18 1997/03/05 23:51:47 fvdl Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -60,18 +60,18 @@
/*
* Virtual memory related constants, all in bytes
*/
#define MAXTSIZ (8*1024*1024) /* max text size */
#define MAXTSIZ (64*1024*1024) /* max text size */
#ifndef DFLDSIZ
#define DFLDSIZ (16*1024*1024) /* initial data size limit */
#define DFLDSIZ (128*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
#define MAXDSIZ (256*1024*1024) /* max data size */
#define MAXDSIZ (1*1024*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (512*1024) /* initial stack size limit */
#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
/*