diff options
author | Eric Jackson <ericj@cvs.openbsd.org> | 2000-07-06 13:38:31 +0000 |
---|---|---|
committer | Eric Jackson <ericj@cvs.openbsd.org> | 2000-07-06 13:38:31 +0000 |
commit | 84659e9a63be386af0d7e58612a02a4fe18e2b59 (patch) | |
tree | 593670852bd3e9f595ea4b609060763402802335 /sys/arch/alpha | |
parent | 548f1181e7de95d3318c2c53af4ae374dfe3dcd4 (diff) |
#ifndef MSGBUFSIZE, ok niklas@
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/include/param.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/param.h b/sys/arch/alpha/include/param.h index 0926d360936..e48b30ee92d 100644 --- a/sys/arch/alpha/include/param.h +++ b/sys/arch/alpha/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.11 2000/02/22 19:27:40 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.12 2000/07/06 13:38:30 ericj Exp $ */ /* $NetBSD: param.h,v 1.15 1996/11/13 21:13:19 cgd Exp $ */ /* @@ -109,7 +109,9 @@ #endif #endif -#define MSGBUFSIZE 8192 +#ifndef MSGBUFSIZE +#define MSGBUFSIZE 1*NBPG +#endif /* * Size of kernel malloc arena in CLBYTES-sized logical pages |