Add missing dependency.
[bertos.git] / bertos / kern / signal.h
index de3dc5ec7e80385b1e25f8860c36dc5284a5051d..9e6a9b09c0b60701e44991892ec7aee03452d68e 100644 (file)
  *
  * -->
  *
- * \brief Signal module (public interface).
+ * \brief Signal module for IPC.
  *
  * \version $Id$
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
  * $WIZ$ module_name = "signal"
- * $WIZ$ module_depends = "kernel"
+ * $WIZ$ module_depends = "kernel", "timer"
  * $WIZ$ module_configuration = "bertos/cfg/cfg_signal.h"
  */
 
@@ -46,6 +46,7 @@
 #define KERN_SIGNAL_H
 
 #include <cfg/compiler.h>
+#include <cfg/macros.h>    // BV()
 
 /* Fwd decl */
 struct Process;
@@ -56,6 +57,9 @@ void sig_signal(struct Process *proc, sigmask_t sig);
 sigmask_t sig_wait(sigmask_t sigs);
 sigmask_t sig_waitTimeout(sigmask_t sigs, ticks_t timeout);
 
+int signal_testRun(void);
+int signal_testSetup(void);
+int signal_testTearDown(void);
 
 /**
  * \name Signal definitions