chiark / gitweb /
Release 2.2.0. Yay.
[mLib] / mem / arena.h
CommitLineData
34f655c1 1/* -*-c-*-
34f655c1 2 *
3 * Abstraction for memory allocation arenas
4 *
5 * (c) 2000 Straylight/Edgeware
6 */
7
d4efbcd9 8/*----- Licensing notice --------------------------------------------------*
34f655c1 9 *
10 * This file is part of the mLib utilities library.
11 *
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
d4efbcd9 16 *
34f655c1 17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
d4efbcd9 21 *
34f655c1 22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
26 */
27
34f655c1 28#ifndef MLIB_ARENA_H
29#define MLIB_ARENA_H
30
31#ifdef __cplusplus
32 extern "C" {
33#endif
34
35/*----- Header files ------------------------------------------------------*/
36
37#include <stdlib.h>
38
39/*----- Data structures ---------------------------------------------------*/
40
41/* --- An arena structure --- */
42
43typedef struct arena {
eae919b5 44 const struct arena_ops *ops;
34f655c1 45} arena;
d4efbcd9 46
34f655c1 47typedef struct arena_ops {
48 void *(*alloc)(arena */*a*/, size_t /*sz*/);
b5ea4de3 49 void *(*realloc)(arena */*a*/, void */*p*/, size_t /*sz*/, size_t /*osz*/);
34f655c1 50 void (*free)(arena */*a*/, void */*p*/);
51 void (*purge)(arena */*a*/);
52} arena_ops;
53
54/*----- Global variables --------------------------------------------------*/
55
56extern arena *arena_global; /* Standard global arena */
57extern arena arena_stdlib; /* Arena based on @malloc@/@free@ */
58
59/*----- Functions provided ------------------------------------------------*/
60
61/* --- @arena_fakerealloc@ --- *
62 *
63 * Arguments: @arena *a@ = pointer to arena block
64 * @void *p@ = pointer to memory block to resize
65 * @size_t sz@ = size desired for the block
b5ea4de3 66 * @size_t osz@ = size of the old block
34f655c1 67 *
68 * Returns: ---
69 *
70 * Use: Standard fake @realloc@ function, for use if you don't
71 * support @realloc@ properly.
72 */
73
b5ea4de3 74extern void *arena_fakerealloc(arena */*a*/, void */*p*/,
75 size_t /*sz*/, size_t /*osz*/);
34f655c1 76
77/* --- Useful macros --- */
78
79#define A_ALLOC(a, sz) (((a)->ops->alloc)((a), (sz)))
b5ea4de3 80#define A_REALLOC(a, p, sz, osz) (((a)->ops->realloc)((a), (p), (sz), (osz)))
34f655c1 81#define A_FREE(a, p) (((a)->ops->free)((a), (p)))
82
83/* --- Simple function equivalents --- */
84
85extern void *a_alloc(arena */*a*/, size_t /*sz*/);
b5ea4de3 86extern void *a_realloc(arena */*a*/, void */*p*/,
87 size_t /*sz*/, size_t /*osz*/);
34f655c1 88extern void a_free(arena */*a*/, void */*p*/);
89
90/*----- That's all, folks -------------------------------------------------*/
91
92#ifdef __cplusplus
93 }
94#endif
95
96#endif