doc: Added group definitions for most common modules.
[bertos.git] / bertos / kern / sem.h
index 1f16acee112f4a71ece2b606ff6ff2a89e1bc6ec..1e59c07fd7a42e2ec16e7e9cf3408d36a95bef11 100644 (file)
@@ -31,6 +31,9 @@
  *
  * -->
  *
+ * \defgroup kern_sem Mutually exclusive semaphores
+ * \ingroup kern
+ * \{
  * \brief Mutually exclusive semaphores.
  *        Shared locking not supported in this implementation.
  *
@@ -69,6 +72,7 @@ bool sem_attempt(struct Semaphore *s);
 void sem_obtain(struct Semaphore *s);
 void sem_release(struct Semaphore *s);
 /* \} */
+/* \} */ //defgroup kern_sem
 
 int sem_testRun(void);
 int sem_testSetup(void);