summaryrefslogtreecommitdiff
path: root/man3/mpool.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-12-23 08:20:39 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-12-23 08:20:39 +0000
commit62218dc0fd31ee51778252fa1cd04c9386fa130f (patch)
tree1273fdfeb0bd8d76b8414c9a4149add7c14112af /man3/mpool.3
parent67c08131703ab78c4c4356f97ca3b2fd6cefeb3d (diff)
Format SYNOPSIS consistently.
Diffstat (limited to 'man3/mpool.3')
-rw-r--r--man3/mpool.321
1 files changed, 10 insertions, 11 deletions
diff --git a/man3/mpool.3 b/man3/mpool.3
index c971ef9d..d0e25c43 100644
--- a/man3/mpool.3
+++ b/man3/mpool.3
@@ -40,23 +40,22 @@ mpool \- shared memory buffer pool
.B #include <db.h>
.B #include <mpool.h>
.sp
-.BI "MPOOL *mpool_open (DBT *" key ", int " fd ", pgno_t " pagesize " \
-, pgno_t " maxcache ");
+.BI "MPOOL *mpool_open(DBT *" key ", int " fd ", pgno_t " pagesize \
+", pgno_t " maxcache ");
.sp
-.BI "void mpool_filter (MPOOL *" mp ", void (*pgin)(void *, " pgno_t " \
-, void *),
-.BI " void (*" pgout ")(void *, " pgno_t ", void *) \
-, void *" pgcookie ");
+.BI "void mpool_filter(MPOOL *" mp ", void (*pgin)(void *, pgno_t, void *),"
+.BI " void (*" pgout ")(void *, pgno_t, void *),"
+.BI " void *" pgcookie ");
.sp
-.BI "void *mpool_new (MPOOL *" mp ", pgno_t *" pgnoaddr ");
+.BI "void *mpool_new(MPOOL *" mp ", pgno_t *" pgnoaddr ");
.sp
-.BI "void *mpool_get (MPOOL *" mp ", pgno_t " pgno ", u_int " flags ");
+.BI "void *mpool_get(MPOOL *" mp ", pgno_t " pgno ", u_int " flags ");
.sp
-.BI "int mpool_put (MPOOL *" mp ", void *" pgaddr ", u_int " flags ");
+.BI "int mpool_put(MPOOL *" mp ", void *" pgaddr ", u_int " flags ");
.sp
-.BI "int mpool_sync (MPOOL *" mp ");
+.BI "int mpool_sync(MPOOL *" mp ");
.sp
-.BI "int mpool_close (MPOOL *" mp ");
+.BI "int mpool_close(MPOOL *" mp ");
.fi
.SH DESCRIPTION
.I Mpool