1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-19 15:33:56 +00:00

Increase the default msgbuf size from 8k to 32k. Boot -v easily

overflows the default buffer making it too hard to get a dmesg from
a verbose boot.  It's still changeable via an option, so if picobsd
needs to set it to something else they still can.

Reviewed by:	phk, alfred
This commit is contained in:
Peter Wemm 2000-01-29 15:29:11 +00:00
parent 9a2b8fca80
commit 8f670c3d88
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56838

View File

@ -52,7 +52,7 @@ extern struct msgbuf *msgbufp;
void msgbufinit __P((void *ptr, size_t size));
#if !defined(MSGBUF_SIZE)
#define MSGBUF_SIZE 8192
#define MSGBUF_SIZE 32768
#endif
#endif