summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Dachsberger <andreas.dachsberger@embedded-brains.de>2019-04-08 10:29:29 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-05-13 07:42:03 +0200
commiteab90bff1dde147be688079ae34f5090583c48ba (patch)
treede5eaea65cae3abc88eb77e020f31f7cbd253760
parentdoxygen: score: adjust doc in corerwlockimpl.h to doxygen guidelines (diff)
downloadrtems-eab90bff1dde147be688079ae34f5090583c48ba.tar.bz2
doxygen: score: adjust doc in coresem.h to doxygen guidelines
Update #3706.
-rw-r--r--cpukit/include/rtems/score/coresem.h28
1 files changed, 16 insertions, 12 deletions
diff --git a/cpukit/include/rtems/score/coresem.h b/cpukit/include/rtems/score/coresem.h
index b44daf56aa..e1f22dc768 100644
--- a/cpukit/include/rtems/score/coresem.h
+++ b/cpukit/include/rtems/score/coresem.h
@@ -1,12 +1,14 @@
/**
- * @file
+ * @file
*
- * @brief Data Associated with the Counting Semaphore Handler
+ * @ingroup RTEMSScoreSemaphore
*
- * This include file contains all the constants and structures associated
- * with the Counting Semaphore Handler. A counting semaphore is the
- * standard Dijkstra binary semaphore used to provide synchronization
- * and mutual exclusion capabilities.
+ * @brief Data Associated with the Counting Semaphore Handler
+ *
+ * This include file contains all the constants and structures associated
+ * with the Counting Semaphore Handler. A counting semaphore is the
+ * standard Dijkstra binary semaphore used to provide synchronization
+ * and mutual exclusion capabilities.
*/
/*
@@ -28,14 +30,16 @@ extern "C" {
#endif
/**
- * @defgroup RTEMSScoreSemaphore Semaphore Handler
+ * @defgroup RTEMSScoreSemaphore Semaphore Handler
+ *
+ * @ingroup RTEMSScore
*
- * @ingroup RTEMSScore
+ * @brief Semaphore Handler
*
- * This handler encapsulates functionality which provides the foundation
- * Semaphore services used in all of the APIs supported by RTEMS.
+ * This handler encapsulates functionality which provides the foundation
+ * Semaphore services used in all of the APIs supported by RTEMS.
*/
-/**@{*/
+/** @{ */
/**
* The following defines the control block used to manage each
@@ -51,7 +55,7 @@ typedef struct {
uint32_t count;
} CORE_semaphore_Control;
-/**@}*/
+/** @} */
#ifdef __cplusplus
}