diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-01-01 20:18:33 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-01-01 20:18:33 +0000 |
commit | 379d0a2fd0d29fbffdbb233ca086ad048aaf08d2 (patch) | |
tree | ee51e486c5a1cf24e24b436004dc886fbe8919fa /sys/arch/i386 | |
parent | 0117556a23d954b9423ec95b2c98568ed5ec2304 (diff) |
Crank SHMMAXPGS from 2048 to 8192. Other platforms where people
are using lots of shm may also wish to also increase SHMMAXPGS.
OK deraadt@
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/vmparam.h b/sys/arch/i386/include/vmparam.h index e1c4498cb4d..937c72ab252 100644 --- a/sys/arch/i386/include/vmparam.h +++ b/sys/arch/i386/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.28 2003/06/02 23:27:47 millert Exp $ */ +/* $OpenBSD: vmparam.h,v 1.29 2004/01/01 20:18:32 millert Exp $ */ /* $NetBSD: vmparam.h,v 1.15 1994/10/27 04:16:34 cgd Exp $ */ /*- @@ -79,7 +79,7 @@ * Size of shared memory map */ #ifndef SHMMAXPGS -#define SHMMAXPGS 2048 +#define SHMMAXPGS 8192 #endif /* |