diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2008-08-29 08:13:09 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2008-08-29 08:13:09 +0000 |
commit | 764eb96a3b466a7a8fef2df5645a7c2b27dd3fd3 (patch) | |
tree | 7b80764fafde314597a9ec26348646b4ec66b81d /sys | |
parent | 394d11ba2db91033950bcc1a06b4ba5d1f391584 (diff) |
MSIZE and MCLBYTES are now defined in sys/param.h; from Jordan Gordeev
ok thib
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 0a63337550a..a5bcd3d8b06 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.102 2008/08/14 19:39:40 claudio Exp $ */ +/* $OpenBSD: mbuf.h,v 1.103 2008/08/29 08:13:08 jmc Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -37,9 +37,9 @@ #include <sys/queue.h> /* - * Mbufs are of a single size, MSIZE (machine/param.h), which + * Mbufs are of a single size, MSIZE (sys/param.h), which * includes overhead. An mbuf may add a single "mbuf cluster" of size - * MCLBYTES (also in machine/param.h), which has no additional overhead + * MCLBYTES (also in sys/param.h), which has no additional overhead * and is used instead of the internal data area; this is done when * at least MINCLSIZE of data must be stored. */ |