diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2010-11-29 00:06:05 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2010-11-29 00:06:05 +0000 |
commit | 514764d951001cf00df0f01dc4067490b6f10c67 (patch) | |
tree | 523a9fb8116e8e3f1bb11222a6e7269cd442323a /sys | |
parent | 5f28e90c01018efe4e8eae59a32c9285aef22edc (diff) |
double the default message buffer size. again.
requested by deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/param.h b/sys/arch/amd64/include/param.h index 0a05730ac25..89cfe97cde1 100644 --- a/sys/arch/amd64/include/param.h +++ b/sys/arch/amd64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.16 2010/06/22 05:20:40 dlg Exp $ */ +/* $OpenBSD: param.h,v 1.17 2010/11/29 00:06:04 dlg Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -94,7 +94,7 @@ #define USPACE_ALIGN (0) /* u-area alignment 0-none */ #ifndef MSGBUFSIZE -#define MSGBUFSIZE 8*NBPG /* default message buffer size */ +#define MSGBUFSIZE 16*NBPG /* default message buffer size */ #endif /* |