Heap: add heap_freeSpace(), a new function.
[bertos.git] / bertos / struct / heap.h
index bcc54d529d10c47cee49f78cd8a70d9a3a5faf82..efd02c284ad5a7ffd9544cc8315bf37b521399c4 100644 (file)
@@ -38,6 +38,9 @@
  *
  * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZ$ module_name = "heap"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_heap.h"
  */
 
 #ifndef STRUCT_HEAP_H
@@ -82,6 +85,7 @@ void *heap_allocmem(struct Heap* heap, size_t size);
 /// Free a chunk of memory of \a size bytes from the heap
 void heap_freemem(struct Heap* heap, void *mem, size_t size);
 
+size_t heap_freeSpace(struct Heap *h);
 
 #define HNEW(heap, type) \
        (type*)heap_allocmem(heap, sizeof(type))