1 .\" Copyright (c) 1990, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" @(#)mpool.3 8.1 (Berkeley) 6/4/93
29 .\" $FreeBSD: src/lib/libc/db/man/mpool.3,v 1.15 2007/01/09 00:27:51 imp Exp $
36 .Nd "shared memory buffer pool"
41 .Fn mpool_open "void *key" "int fd" "pgno_t pagesize" "pgno_t maxcache"
45 .Fa "void (*pgin)(void *, pgno_t, void *)"
46 .Fa "void (*pgout)(void *, pgno_t, void *)"
50 .Fn mpool_new "MPOOL *mp" "pgno_t *pgnoaddr"
52 .Fn mpool_get "MPOOL *mp" "pgno_t pgno" "u_int flags"
54 .Fn mpool_put "MPOOL *mp" "void *pgaddr" "u_int flags"
56 .Fn mpool_sync "MPOOL *mp"
58 .Fn mpool_close "MPOOL *mp"
62 library interface is intended to provide page oriented buffer management
67 function initializes a memory pool.
70 argument is currently ignored.
73 argument is a file descriptor for the underlying file, which must be seekable.
77 argument is the size, in bytes, of the pages into which the file is broken up.
80 argument is the maximum number of pages from the underlying file to cache
82 This value is not relative to the number of processes which share a file's
83 buffers, but will be the largest value specified by any of the processes
88 function is intended to make transparent input and output processing of the
92 function is specified, it is called each time a buffer is read into the memory
93 pool from the backing file.
96 function is specified, it is called each time a buffer is written into the
98 Both functions are called with the
100 pointer, the page number and a pointer to the page to being read or written.
106 pointer and an address as arguments.
107 If a new page can be allocated, a pointer to the page is returned and
108 the page number is stored into the
121 pointer and a page number as arguments.
122 If the page exists, a pointer to the page is returned.
130 argument is not currently used.
134 function unpins the page referenced by
139 must be an address previously returned by
145 argument is specified by
147 any of the following values:
148 .Bl -tag -width indent
150 The page has been modified and needs to be written to the backing file.
156 returns 0 on success and -1 if an error occurs.
160 function writes all modified pages associated with the
167 returns 0 on success and -1 if an error occurs.
171 function free's up any allocated memory associated with the memory pool
175 written to the backing file.
179 returns 0 on success and -1 if an error occurs.
183 function may fail and set
185 for any of the errors specified for the library routine
190 function may fail and set
195 The requested record does not exist.
202 functions may fail and set
204 for any of the errors specified for the library routines
212 function may fail and set
214 for any of the errors specified for the library routine
219 function may fail and set
221 for any of the errors specified for the library routine