diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2000-04-30 15:29:48 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2000-04-30 15:29:48 +0000 |
commit | ce1a04152cca3e2f8c1f2498863107cf4b3ccdfd (patch) | |
tree | 2833286aecb02fc31ad17b94e971fb1966fc870d | |
parent | 5b02c832ba5999dd2b09f9cb0c6724e7fb3ca5b7 (diff) |
Fix kernel msgbuf buffer size and position
-rw-r--r-- | sys/arch/sun3/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sun3/include/param.h b/sys/arch/sun3/include/param.h index f588a07e0ea..fb5876208b7 100644 --- a/sys/arch/sun3/include/param.h +++ b/sys/arch/sun3/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.18 2000/03/02 23:01:46 todd Exp $ */ +/* $OpenBSD: param.h,v 1.19 2000/04/30 15:29:47 miod Exp $ */ /* $NetBSD: param.h,v 1.34 1996/03/04 05:04:40 cgd Exp $ */ /* @@ -90,7 +90,7 @@ #endif #endif -#define MSGBUFSIZE NBPG +#define MSGBUFSIZE (NBPG >> 1) /* * Size of kernel malloc arena in CLBYTES-sized logical pages |