chiark / gitweb /
Minor typo fixes.
[mLib] / arena.c
CommitLineData
34f655c1 1/* -*-c-*-
2 *
c6250df0 3 * $Id: arena.c,v 1.3 2000/08/06 11:00:18 mdw Exp $
34f655c1 4 *
5 * Abstraction for memory allocation arenas
6 *
7 * (c) 2000 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the mLib utilities library.
13 *
14 * mLib is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
19 * mLib is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
25 * License along with mLib; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
28 */
29
30/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: arena.c,v $
c6250df0 33 * Revision 1.3 2000/08/06 11:00:18 mdw
34 * Daft bug fix. Include <string.h>.
35 *
b5ea4de3 36 * Revision 1.2 2000/07/16 12:29:16 mdw
37 * Change to arena `realloc' interface, to fix a design bug.
38 *
34f655c1 39 * Revision 1.1 2000/06/17 10:37:53 mdw
40 * Basic arena management.
41 *
42 */
43
44/*----- Header files ------------------------------------------------------*/
45
46#include <stdlib.h>
c6250df0 47#include <string.h>
34f655c1 48
49#include "arena.h"
50
51/*----- The standard arena ------------------------------------------------*/
52
53static void *_alloc(arena *a, size_t sz) { return malloc(sz); }
b5ea4de3 54static void *_realloc(arena *a, void *p, size_t sz, size_t osz)
55 { return realloc(p, sz); }
34f655c1 56static void _free(arena *a, void *p) { free (p); }
57
58static arena_ops stdlib_ops = { _alloc, _realloc, _free, 0 };
59arena arena_stdlib = { &stdlib_ops };
60
61/*----- Global variables --------------------------------------------------*/
62
63arena *arena_global = &arena_stdlib;
64
65/*----- Main code ---------------------------------------------------------*/
66
67/* --- @arena_fakerealloc@ --- *
68 *
69 * Arguments: @arena *a@ = pointer to arena block
70 * @void *p@ = pointer to memory block to resize
71 * @size_t sz@ = size desired for the block
b5ea4de3 72 * @size_t osz@ = size of the old block
34f655c1 73 *
74 * Returns: ---
75 *
76 * Use: Standard fake @realloc@ function, for use if you don't
77 * support @realloc@ properly.
78 */
79
b5ea4de3 80void *arena_fakerealloc(arena *a, void *p, size_t sz, size_t osz)
34f655c1 81{
82 void *q = A_ALLOC(a, sz);
83 if (!q)
84 return (0);
b5ea4de3 85 memcpy(q, p, sz > osz ? osz : sz);
34f655c1 86 A_FREE(a, p);
87 return (q);
88}
89
90/* --- Function equivalents of the macros --- */
91
92void *a_alloc(arena *a, size_t sz) { return (A_ALLOC(a, sz)); }
b5ea4de3 93void *a_realloc(arena *a, void *p, size_t sz, size_t osz)
94{ return A_REALLOC(a, p, sz, osz); }
34f655c1 95void a_free(arena *a, void *p) { A_FREE(a, p); }
96
97/*----- That's all, folks -------------------------------------------------*/