Pegasus InfoCorp: Web site design and web software development company

MPOOL (3)

shared memory buffer pool

SYNOPSIS

    B
    #include <db.h>
    #include <mpool.h>
    

    MPOOL * mpool_open (DBT *key, int fd, pgno_t pagesize, pgno_t maxcache);

    void mpool_filter (MPOOL *mp, void (*pgin)(void *, pgno_t, void *),

    void (*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);

    int mpool_put (MPOOL *mp, void *pgaddr, u_int flags);

    int mpool_sync (MPOOL *mp);

    int mpool_close (MPOOL *mp); R

DESCRIPTION

    Mpool is the library interface intended to provide page oriented buffer management of files. The buffers may be shared between processes.

    The function mpool_open initializes a memory pool. The key argument is the byte string used to negotiate between multiple processes wishing to share buffers. If the file buffers are mapped in shared memory, all processes using the same key will share the buffers. If key is NULL, the buffers are mapped into private memory. The fd argument is a file descriptor for the underlying file, which must be seekable. If key is non-NULL and matches a file already being mapped, the fd argument is ignored.

    The pagesize argument is the size, in bytes, of the pages into which the file is broken up. The maxcache argument is the maximum number of pages from the underlying file to cache at any one time. This value is not relative to the number of processes which share a file's buffers, but will be the largest value specified by any of the processes sharing the file.

    The mpool_filter function is intended to make transparent input and output processing of the pages possible. If the pgin function is specified, it is called each time a buffer is read into the memory pool from the backing file. If the pgout function is specified, it is called each time a buffer is written into the backing file. Both functions are are called with the pgcookie pointer, the page number and a pointer to the page to being read or written.

    The function mpool_new takes an MPOOL pointer and an address as arguments. If a new page can be allocated, a pointer to the page is returned and the page number is stored into the pgnoaddr address. Otherwise, NULL is returned and errno is set.

    The function mpool_get takes 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.

    The function mpool_put unpins the page referenced by pgaddr . Pgaddr must be an address previously returned by mpool_get or mpool_new . The flag value is specified by or 'ing any of the following values:

    MPOOL_DIRTY

      The page has been modified and needs to be written to the backing file.

    Mpool_put returns 0 on success and -1 if an error occurs.

    The function mpool_sync writes all modified pages associated with the MPOOL pointer to the backing file. Mpool_sync returns 0 on success and -1 if an error occurs.

    The mpool_close function free's up any allocated memory associated with the memory pool cookie. Modified pages are not written to the backing file. Mpool_close returns 0 on success and -1 if an error occurs.

ERRORS

    The mpool_open function may fail and set errno for any of the errors specified for the library routine malloc (3).

    The mpool_get function may fail and set errno for the following:

    [EINVAL]

      The requested record doesn't exist.

    The mpool_new and mpool_get functions may fail and set errno for any of the errors specified for the library routines read (2) , write (2) , and malloc (3).

    The mpool_sync function may fail and set errno for any of the errors specified for the library routine write (2).

    The mpool_close function may fail and set errno for any of the errors specified for the library routine free (3).

SEE ALSO

    - dbopen (3) - - btree (3) - hash(3) - recno (3) - man3/drand48 3 ' " ' " Copyright(c) 1990 The Regents of the University of California ' " Copyright(c) 1994-1997 Sun Microsystems Inc ' " ' " See the file "license terms" for information on usage and redistribution ' " of this file and for a DISCLAIMER OF ALL WARRANTIES ' " ' " RCS: @(#) $Id: Name 3 v 1 2 1998/09/14 18:22:52 stanton Exp $ ' " ' " The definitions below are for supplemental macros used in Tcl/Tk ' " manual entries ' " ' " AP type name in/out ?indent? ' " Start paragraph describing an argument to a library procedure ' " type is type of argument(int etc ) in/out is either "in" "out" ' " or "in/out" to describe whether procedure reads or modifies arg ' " and indent is equivalent to second arg of IP(shouldn't ever be ' " needed; use AS below instead) ' " ' " AS ?type? ?name? ' " Give maximum sizes of arguments for setting tab stops Type and ' " name are examples of largest possible arguments that will be passed ' " to AP later If args are omitted default tab stops are used ' " ' " BS ' " Start box enclosure From here until next BE everything will be ' " enclosed in one large box ' " ' " BE ' " End of box enclosure ' " ' " CS ' " Begin code excerpt ' " ' " CE ' " End code excerpt ' " ' " VS ?version? ?br? ' " Begin vertical sidebar for use in marking newly-changed parts ' " of man pages The first argument is ignored and used for recording ' " the version when the VS was added so that the sidebars can be ' " found and removed when they reach a certain age If another argument ' " is present then a line break is forced before starting the sidebar ' " ' " VE ' " End of vertical sidebar ' " ' " DS ' " Begin an indented unfilled display ' " ' " DE ' " End of indented unfilled display ' " ' " SO ' " Start of list of standard options for a Tk widget The ' " options follow on successive lines in four columns separated ' " by tabs ' " ' " SE ' " End of list of standard options for a Tk widget ' " ' " OP cmdName dbName dbClass ' " Start of description of a specific option cmdName gives the ' " option's name as specified in the class command dbName gives ' " the option's name in the option database and dbClass gives ' " the option's class in the option database ' " ' " UL arg1 arg2 ' " Print arg1 underlined then print arg2 normally ' " ' " RCS: @(#) $Id: man macros v 1 2 1998/09/14 18:39:54 stanton Exp $ ' " ' " # Set up traps and other miscellaneous stuff for Tcl/Tk man pages t wh -1 3i ^B ^l n( l b ' " # Start an argument description AP !" $4"" TP $4 { !" $2"" TP n()Cu 15