sam3n: fix confusion between interrupt numbers and peripheral ids.
[bertos.git] / bertos / kern / sem.h
index bdb29af724556f631ccb92bc36c3c2d64254f742..1f16acee112f4a71ece2b606ff6ff2a89e1bc6ec 100644 (file)
  * \brief Mutually exclusive semaphores.
  *        Shared locking not supported in this implementation.
  *
- * \version $Id$
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZ$ module_name = "semaphores"
+ * $WIZ$ module_depends = "kernel"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_sem.h"
  */
 
 
@@ -67,4 +70,8 @@ void sem_obtain(struct Semaphore *s);
 void sem_release(struct Semaphore *s);
 /* \} */
 
+int sem_testRun(void);
+int sem_testSetup(void);
+int sem_testTearDown(void);
+
 #endif /* KERN_SEM_H */