Increase MSGBUFSIZE so that we don't truncate dmesg before syslog

starts.
This commit is contained in:
sekiya 2008-02-21 09:32:12 +00:00
parent 5fefda665c
commit 209f5cf4d0
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.9 2006/09/26 13:11:59 tsutsui Exp $ */
/* $NetBSD: param.h,v 1.10 2008/02/21 09:32:12 sekiya Exp $ */
/*
* Copyright (c) 1992, 1993
@ -71,6 +71,10 @@
#ifndef _SGIMIPS_PARAM_H_
#define _SGIMIPS_PARAM_H_
#if !defined(MSGBUFSIZE)
#define MSGBUFSIZE 8192
#endif
#include <mips/mips_param.h>
#define _MACHINE_ARCH mipseb
@ -84,6 +88,7 @@
#define BLKDEV_IOSIZE 2048
#define MAXPHYS (64 * 1024) /* Maximum raw I/O transfer size */
/*
* Constants related to network buffer management.
* MCLBYTES must be no larger than NBPG (the software page size), and,