From 055fea386e4994a35b758b94f948f9de1c8ba091 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 11 Dec 2014 15:12:21 +0000 Subject: 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 --- os/rt/include/chsem.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'os/rt/include/chsem.h') 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) { -- cgit v1.2.3