Include top-level headers from cfg/ subdir.
[bertos.git] / mware / heap.h
1 /*!
2  * \file
3  * <!--
4  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
5  * Copyright 1999,2000,2001 Bernardo Innocenti <bernie@develer.com>
6  * This file is part of DevLib - See devlib/README for information.
7  * -->
8  *
9  * \brief Heap subsystem (public interface).
10  *
11  * \version $Id$
12  *
13  * \author Bernardo Innocenti <bernie@develer.com>
14  *
15  * \todo Heap memory could be defined as an array of MemChunk, and used
16  * in this form also within the implementation. This would probably remove
17  * memory alignment problems, and also some aliasing issues.
18  *
19  */
20
21 /*#*
22  *#* $Log$
23  *#* Revision 1.4  2005/04/11 19:10:28  bernie
24  *#* Include top-level headers from cfg/ subdir.
25  *#*
26  *#* Revision 1.3  2004/08/25 14:12:09  rasky
27  *#* Aggiornato il comment block dei log RCS
28  *#*
29  *#* Revision 1.2  2004/08/04 15:54:18  rasky
30  *#* Merge da SC: prima versione veramente funzionante
31  *#*
32  *#* Revision 1.1  2004/07/31 16:33:58  rasky
33  *#* Spostato lo heap da kern/ a mware/
34  *#*
35  *#* Revision 1.2  2004/06/03 11:27:09  bernie
36  *#* Add dual-license information.
37  *#*
38  *#* Revision 1.1  2004/05/23 17:27:00  bernie
39  *#* Import kern/ subdirectory.
40  *#*
41  *#*/
42
43 #ifndef MWARE_HEAP_H
44 #define MWARE_HEAP_H
45
46 #include <cfg/compiler.h>
47 #include <cfg/config.h>
48
49 struct _MemChunk;
50
51 //! A heap
52 struct Heap
53 {
54         struct _MemChunk *FreeList;     //!< Head of the free list
55 };
56
57
58 //! Initialize \a heap within the buffer pointed by \a memory which is of \a size bytes
59 void heap_init(struct Heap* heap, void* memory, size_t size);
60
61 //! Allocate a chunk of memory of \a size bytes from the heap
62 void *heap_allocmem(struct Heap* heap, size_t size);
63
64 //! Free a chunk of memory of \a size bytes from the heap
65 void heap_freemem(struct Heap* heap, void *mem, size_t size);
66
67
68 #define HNEW(heap, type) \
69         (type*)heap_allocmem(heap, sizeof(type))
70
71 #define HNEWVEC(heap, type, nelem) \
72         (type*)heap_allocmem(heap, sizeof(type) * (nelem))
73
74 #define HDELETE(heap, type, mem) \
75         heap_freemem(heap, mem, sizeof(type))
76
77 #define HDELETEVEC(heap, type, nelem, mem) \
78         heap_freemem(heap, mem, sizeof(type) * (nelem))
79
80
81 #if CONFIG_HEAP_MALLOC
82
83 void *heap_malloc(struct Heap* heap, size_t size);
84 void *heap_calloc(struct Heap* heap, size_t size);
85 void heap_free(struct Heap* heap, void * mem);
86
87 #endif
88
89 #endif /* MWARE_HEAP_H */