Basic selection memory pooling.
[gromacs.git] / src / gmxlib / selection / mempool.h
blob548a46fb62e4e252b9a0bb00dcde2f78fe83ca33
1 /*
3 * This source code is part of
5 * G R O M A C S
7 * GROningen MAchine for Chemical Simulations
9 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
10 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
11 * Copyright (c) 2001-2009, The GROMACS development team,
12 * check out http://www.gromacs.org for more information.
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * If you want to redistribute modifications, please consider that
20 * scientific software is very special. Version control is crucial -
21 * bugs must be traceable. We will be happy to consider code for
22 * inclusion in the official distribution, but derived work must not
23 * be called official GROMACS. Details are found in the README & COPYING
24 * files - if they are missing, get the official version at www.gromacs.org.
26 * To help us fund GROMACS development, we humbly ask that you cite
27 * the papers on the package - you can find them in the top README file.
29 * For more info, check our website at http://www.gromacs.org
31 /*! \internal \file
32 * \brief Declarations for memory pooling functions.
34 * This is an implementation header: there should be no need to use it outside
35 * this directory.
37 #ifndef GMX_SELECTION_MEMPOOL_H
38 #define GMX_SELECTION_MEMPOOL_H
40 struct gmx_ana_index_t;
42 typedef struct gmx_sel_mempool_t gmx_sel_mempool_t;
44 /** Create an empty memory pool. */
45 int
46 _gmx_sel_mempool_create(gmx_sel_mempool_t **mpp);
47 /** Destroy a memory pool. */
48 void
49 _gmx_sel_mempool_destroy(gmx_sel_mempool_t *mp);
51 /** Allocate memory from a memory pool. */
52 int
53 _gmx_sel_mempool_alloc(gmx_sel_mempool_t *mp, void **ptrp, size_t size);
54 /** Release memory allocated from a memory pool. */
55 void
56 _gmx_sel_mempool_free(gmx_sel_mempool_t *mp, void *ptr);
57 /** Set the size of a memory pool. */
58 int
59 _gmx_sel_mempool_reserve(gmx_sel_mempool_t *mp, size_t size);
61 /** Convenience function for allocating an index group from a memory pool. */
62 int
63 _gmx_sel_mempool_alloc_group(gmx_sel_mempool_t *mp, struct gmx_ana_index_t *g,
64 int isize);
66 #endif