Add heap module.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 22 Mar 2010 16:29:37 +0000 (16:29 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 22 Mar 2010 16:29:37 +0000 (16:29 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3256 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_heap.h
bertos/struct/heap.h

index 0cba377b38c05ccd2b4018366dc5dd602b88964f..dc4b1fa397515b475bc0d4a7ada9f9d0ef23faf5 100644 (file)
 #ifndef CFG_HEAP_H
 #define CFG_HEAP_H
 
-/// TODO
+/**
+ * Enable malloc/free like API.
+ * $WIZ$ type = "boolean"
+ */
 #define CONFIG_HEAP_MALLOC     1
 
 #endif /* CFG_HEAP_H */
index bcc54d529d10c47cee49f78cd8a70d9a3a5faf82..ad362a6b1966867a04a16b25854bf3b6bdc195e6 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