3 * $Id: sub.h,v 1.2 1999/05/05 18:50:31 mdw Exp $
5 * Allocation of known-size blocks
7 * (c) 1998 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of the mLib utilities library.
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.
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.
24 * You should have received a copy of the GNU Library General Public
25 * License along with mLib; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
32 * Revision 1.2 1999/05/05 18:50:31 mdw
33 * Change licensing conditions to LGPL.
35 * Revision 1.1.1.1 1998/06/17 23:44:42 mdw
36 * Initial version of mLib
47 /*----- Required header files ---------------------------------------------*/
55 /*----- Functions provided ------------------------------------------------*/
57 /* --- @sub_alloc@ --- *
59 * Arguments: @size_t s@ = size of chunk wanted
61 * Returns: Pointer to a block at least as large as the one wanted.
63 * Use: Allocates a small block of memory. If there is no more
64 * memory left, the exception @EXC_NOMEM@ is raised.
68 # define sub_alloc(s) xmalloc(s)
70 void *sub_alloc(size_t s);
73 /* --- @sub_free@ --- *
75 * Arguments: @void *p@ = address of block to free
76 * @size_t s@ = size of block
80 * Use: Frees a block allocated by @sub_alloc@.
84 # define sub_free(p, s) free(p)
86 void sub_free(void *p, size_t s);
91 * Arguments: @type@ = type of object required; must be passable to
94 * Returns: Pointer to a block sufficiently big to hold an object of the
97 * Use: Allocates a block of the required type.
100 #define CREATE(type) sub_alloc(sizeof(type))
102 /* --- @DESTROY@ --- *
104 * Arguments: @void *p@ = pointer to an object
108 * Use: Frees the thing pointed to by @p@.
111 #define DESTROY(p) sub_free(p, sizeof(*p))
113 /* --- @sub_init@ --- *
119 * Use: Initialises the magic allocator.
124 /*----- That's all, folks -------------------------------------------------*/