aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include/chsem.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-12-11 15:12:21 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-12-11 15:12:21 +0000
commit055fea386e4994a35b758b94f948f9de1c8ba091 (patch)
treeb121874ef43c137a308d7009c7acc08b43c0b135 /os/rt/include/chsem.h
parent509af41c04084bb0ed467d137efb4aeb68d25a05 (diff)
downloadChibiOS-055fea386e4994a35b758b94f948f9de1c8ba091.tar.gz
ChibiOS-055fea386e4994a35b758b94f948f9de1c8ba091.tar.bz2
ChibiOS-055fea386e4994a35b758b94f948f9de1c8ba091.zip
Documentation related fixes. Documentation is buildable with Doxygen 1.8.8 now.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7571 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include/chsem.h')
-rw-r--r--os/rt/include/chsem.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/os/rt/include/chsem.h b/os/rt/include/chsem.h
index 4762da9df..51f9302a1 100644
--- a/os/rt/include/chsem.h
+++ b/os/rt/include/chsem.h
@@ -112,6 +112,8 @@ extern "C" {
* @brief Decreases the semaphore counter.
* @details This macro can be used when the counter is known to be positive.
*
+ * @param[in] sp pointer to a @p semaphore_t structure
+ *
* @iclass
*/
static inline void chSemFastWaitI(semaphore_t *sp) {
@@ -126,6 +128,8 @@ static inline void chSemFastWaitI(semaphore_t *sp) {
* @details This macro can be used when the counter is known to be not
* negative.
*
+ * @param[in] sp pointer to a @p semaphore_t structure
+ *
* @iclass
*/
static inline void chSemFastSignalI(semaphore_t *sp) {
@@ -138,6 +142,9 @@ static inline void chSemFastSignalI(semaphore_t *sp) {
/**
* @brief Returns the semaphore counter current value.
*
+ * @param[in] sp pointer to a @p semaphore_t structure
+ * @return The semaphore counter value.
+ *
* @iclass
*/
static inline cnt_t chSemGetCounterI(semaphore_t *sp) {