chiark / gitweb /
Various manual fixes.
authormdw <mdw>
Tue, 18 Oct 2005 08:43:44 +0000 (08:43 +0000)
committermdw <mdw>
Tue, 18 Oct 2005 08:43:44 +0000 (08:43 +0000)
man/lbuf.3
man/pkbuf.3
man/unihash.3

index 1c80f934bdb19eb876a8140599a1ea522081fe39..5ff582ac7c9222864dbd92f0d2f96277fb9fd922 100644 (file)
@@ -213,12 +213,12 @@ signalled to the higher-level object so that it can detach itself from
 its data source.
 .PP
 Rather than invent some complex interface for this, the line buffer
-exports one of its structure members,
-.BR flags .
+exports one of its structure members, a flags word called
+.BR f .
 A higher-level object wishing to disable the line buffer simply clears
 the bit
 .B LBUF_ENABLE
-in the flags word.
+in this flags word.
 .PP
 Disabling a buffer causes an immediate return from
 .BR lbuf_flush .
index 4bcc9d371e9b65409124bf213ca075148d3d6fdb..3d7fdc5a8de64d739e9f440f3d7b6a7d53ec17b0 100644 (file)
@@ -197,12 +197,12 @@ also be signalled to the higher-level object so that it can detach
 itself from its data source.
 .PP
 Rather than invent some complex interface for this, the packet buffer
-exports one of its structure members,
-.BR flags .
+exports one of its structure members, a flags words called
+.BR f .
 A higher-level object wishing to disable the packet buffer simply clears
 the bit
 .B PKBUF_ENABLE
-in the flags word.
+in this flags word.
 .PP
 Disabling a buffer causes an immediate return from
 .BR pkbuf_flush .
index 8e45c696d3fe383b28fb54aa2581a76c1ce7b3f1..bc565b8581e7223ca6428bc8a17ac67e9afa0c00 100644 (file)
@@ -49,8 +49,8 @@ unihash \- simple and efficient universal hashing for hashtables
 
 .BI "void unihash_setkey(unihash_info *" i ", uint32 " k );
 .BI "uint32 UNIHASH_INIT(const unihash_info *" i );
-.BI "void unihash_hash(const unihash_info *" st ", uint32 " a ,
-.BI "                  const void *" p ", size_t " sz );
+.BI "uint32 unihash_hash(const unihash_info *" i ", uint32 " a ,
+.BI "                    const void *" p ", size_t " sz );
 .BI "uint32 unihash(const unihash_info *" i ", const void *" p ", size_t " sz );
 .BI "uint32 UNIHASH(const unihash_info *" i ", const void *" p ", size_t " sz );
 .fi