From: batt Date: Wed, 25 Mar 2009 16:07:36 +0000 (+0000) Subject: Make sem, signal and monitor separates modules. X-Git-Tag: 2.1.0~258 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=f87964692a608f5dc71d84418f9ffa2b70d54368;hp=23a9c310a7e81d359eeac54101fa7c98c4a7a468;p=bertos.git Make sem, signal and monitor separates modules. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2424 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/kern/monitor.h b/bertos/kern/monitor.h index fd458669..ec297b78 100644 --- a/bertos/kern/monitor.h +++ b/bertos/kern/monitor.h @@ -35,12 +35,16 @@ * \version $Id$ * * \author Giovanni Bajo + * + * $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 diff --git a/bertos/kern/sem.h b/bertos/kern/sem.h index bdb29af7..71c6273a 100644 --- a/bertos/kern/sem.h +++ b/bertos/kern/sem.h @@ -37,6 +37,10 @@ * \version $Id$ * * \author Bernie Innocenti + * + * $WIZ$ module_name = "semaphores" + * $WIZ$ module_depends = "kernel" + * $WIZ$ module_configuration = "bertos/cfg/cfg_sem.h" */ diff --git a/bertos/kern/signal.h b/bertos/kern/signal.h index 6385112e..de3dc5ec 100644 --- a/bertos/kern/signal.h +++ b/bertos/kern/signal.h @@ -36,6 +36,10 @@ * \version $Id$ * * \author Bernie Innocenti + * + * $WIZ$ module_name = "signal" + * $WIZ$ module_depends = "kernel" + * $WIZ$ module_configuration = "bertos/cfg/cfg_signal.h" */ #ifndef KERN_SIGNAL_H