📄 mpool.3
字号:
.\" Copyright (c) 1990, 1993.\" The Regents of the University of California. All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)mpool.3 8.1 (Berkeley) 6/4/93.\".TH MPOOL 3 "June 4, 1993".UC 7.SH NAMEmpool \- shared memory buffer pool.SH SYNOPSIS.nf.ft B#include <db.h>#include <mpool.h>MPOOL *mpool_open (DBT *key, int fd, pgno_t pagesize, pgno_t maxcache);voidmpool_filter (MPOOL *mp, void (*pgin)(void *, pgno_t, void *),.ti +5void (*pgout)(void *, pgno_t, void *), void *pgcookie);void *mpool_new (MPOOL *mp, pgno_t *pgnoaddr);void *mpool_get (MPOOL *mp, pgno_t pgno, u_int flags);intmpool_put (MPOOL *mp, void *pgaddr, u_int flags);intmpool_sync (MPOOL *mp);intmpool_close (MPOOL *mp);.ft R.fi.SH DESCRIPTION.IR Mpoolis the library interface intended to provide page oriented buffer managementof files.The buffers may be shared between processes..PPThe function.I mpool_openinitializes a memory pool.The.I keyargument is the byte string used to negotiate between multipleprocesses wishing to share buffers.If the file buffers are mapped in shared memory, all processes usingthe same key will share the buffers.If.I keyis NULL, the buffers are mapped into private memory.The.I fdargument is a file descriptor for the underlying file, which must be seekable.If.I keyis non-NULL and matches a file already being mapped, the.I fdargument is ignored..PPThe.I pagesizeargument is the size, in bytes, of the pages into which the file is broken up.The.I maxcacheargument is the maximum number of pages from the underlying file to cacheat any one time.This value is not relative to the number of processes which share a file'sbuffers, but will be the largest value specified by any of the processessharing the file..PPThe.I mpool_filterfunction is intended to make transparent input and output processing of thepages possible.If the.I pginfunction is specified, it is called each time a buffer is read into the memorypool from the backing file.If the.I pgoutfunction is specified, it is called each time a buffer is written into thebacking file.Both functions are are called with the.I pgcookiepointer, the page number and a pointer to the page to being read or written..PPThe function.I mpool_newtakes an MPOOL pointer and an address as arguments.If a new page can be allocated, a pointer to the page is returned andthe page number is stored into the.I pgnoaddraddress.Otherwise, NULL is returned and errno is set..PPThe function.I mpool_gettakes a MPOOL pointer and a page number as arguments.If the page exists, a pointer to the page is returned.Otherwise, NULL is returned and errno is set.The flags parameter is not currently used..PPThe function.I mpool_putunpins the page referenced by.IR pgaddr ..I Pgaddrmust be an address previously returned by.I mpool_getor.IR mpool_new .The flag value is specified by.IR or 'ingany of the following values:.TPMPOOL_DIRTYThe page has been modified and needs to be written to the backing file..PP.I Mpool_putreturns 0 on success and -1 if an error occurs..PPThe function.I mpool_syncwrites all modified pages associated with the MPOOL pointer to thebacking file..I Mpool_syncreturns 0 on success and -1 if an error occurs..PPThe.I mpool_closefunction free's up any allocated memory associated with the memory poolcookie.Modified pages are.B notwritten to the backing file..I Mpool_closereturns 0 on success and -1 if an error occurs..SH ERRORSThe.I mpool_openfunction may fail and set.I errnofor any of the errors specified for the library routine.IR malloc (3)..PPThe.I mpool_getfunction may fail and set.I errnofor the following:.TP 15[EINVAL]The requested record doesn't exist..PPThe.I mpool_newand.I mpool_getfunctions may fail and set.I errnofor any of the errors specified for the library routines.IR read (2) ,.IR write (2) ,and.IR malloc (3)..PPThe.I mpool_syncfunction may fail and set.I errnofor any of the errors specified for the library routine.IR write (2)..PPThe.I mpool_closefunction may fail and set.I errnofor any of the errors specified for the library routine.IR free (3)..SH "SEE ALSO".IR dbopen (3),.IR btree (3),.IR hash (3),.IR recno (3)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -