From 2cc28dc7b62373b10ff03eeb1a04436162c0c29a Mon Sep 17 00:00:00 2001 From: gwr Date: Mon, 5 Apr 1999 14:34:18 +0000 Subject: [PATCH] Make it clear that MSGBUFSIZE is not user-adjustable. --- sys/arch/sun3/include/param.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys/arch/sun3/include/param.h b/sys/arch/sun3/include/param.h index 6e91a48b8646..ff114c2d9e9d 100644 --- a/sys/arch/sun3/include/param.h +++ b/sys/arch/sun3/include/param.h @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.48 1998/02/05 04:56:55 gwr Exp $ */ +/* $NetBSD: param.h,v 1.49 1999/04/05 14:34:18 gwr Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -53,6 +53,9 @@ #define PGSHIFT 13 /* LOG2(NBPG) */ +#ifdef MSGBUFSIZE +#error "MSGBUFSIZE is not user-adjustable for this arch" +#endif #define MSGBUFOFF 0x200 #define MSGBUFSIZE (NBPG - MSGBUFOFF)