Make sem, signal and monitor separates modules.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 25 Mar 2009 16:07:36 +0000 (16:07 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 25 Mar 2009 16:07:36 +0000 (16:07 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2424 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/kern/monitor.h
bertos/kern/sem.h
bertos/kern/signal.h

index fd458669f86a72ce4c26a867cc9b6fc0325528de..ec297b783f47be3864f1593bbaeb8cbde65363f2 100644 (file)
  * \version $Id$
  *
  * \author Giovanni Bajo <rasky@develer.com>
+ *
+ * $WIZ$ module_name = "monitor"
+ * $WIZ$ module_depends = "kernel"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_monitor.h"
  */
 
 #ifndef KERN_MONITOR_H
 #define KERN_MONITOR_H
 
-#include "cfg/cfg_kern.h"
+#include "cfg/cfg_monitor.h"
 
 #include <cpu/types.h>
 
index bdb29af724556f631ccb92bc36c3c2d64254f742..71c6273a96fb4cf9fe2e3d8d40c930717cde9a53 100644 (file)
  * \version $Id$
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZ$ module_name = "semaphores"
+ * $WIZ$ module_depends = "kernel"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_sem.h"
  */
 
 
index 6385112ef972c21520428e5915ac631c4894743b..de3dc5ec7e80385b1e25f8860c36dc5284a5051d 100644 (file)
  * \version $Id$
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZ$ module_name = "signal"
+ * $WIZ$ module_depends = "kernel"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_signal.h"
  */
 
 #ifndef KERN_SIGNAL_H