diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-11-05 22:16:53 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-11-05 22:16:53 +0000 |
commit | 91e0f6890960ad8a4f758d0bcbe3b3bd1f22b265 (patch) | |
tree | 2d46974dcb6e5792c8d517c20a5b62ea67639e67 /sys/arch | |
parent | d224bfe99f83784521dccc531e859868463e1c50 (diff) |
Raise the shared memory size to 16MB from 4MB. 4MB is too small for current
memory machines and current program demands.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/macppc/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/include/vmparam.h b/sys/arch/macppc/include/vmparam.h index e402f26b52c..7fd9f72acd6 100644 --- a/sys/arch/macppc/include/vmparam.h +++ b/sys/arch/macppc/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.3 2001/09/22 18:00:09 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.4 2001/11/05 22:16:52 drahn Exp $ */ /* $NetBSD: vmparam.h,v 1.1 1996/09/30 16:34:38 ws Exp $ */ /*- @@ -62,7 +62,7 @@ * Size of shared memory map */ #ifndef SHMMAXPGS -#define SHMMAXPGS 1024 +#define SHMMAXPGS 4096 #endif /* |