summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Dachsberger <andreas.dachsberger@embedded-brains.de>2019-04-15 11:38:21 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-05-13 07:42:04 +0200
commit93afceb20c18409b7e0df9cbcceac807527d82e9 (patch)
tree663d0e1e84510c1220e37ba8ccae86d284214de7
parentdoxygen: score: adjust doc in smplock.h to doxygen guidelines (diff)
downloadrtems-93afceb20c18409b7e0df9cbcceac807527d82e9.tar.bz2
doxygen: score: adjust doc in smplockmcs.h to doxygen guidelines
Update #3706.
-rw-r--r--cpukit/include/rtems/score/smplockmcs.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/cpukit/include/rtems/score/smplockmcs.h b/cpukit/include/rtems/score/smplockmcs.h
index 977f807fe8..9c003fde6e 100644
--- a/cpukit/include/rtems/score/smplockmcs.h
+++ b/cpukit/include/rtems/score/smplockmcs.h
@@ -104,11 +104,11 @@ typedef struct {
#define SMP_MCS_LOCK_INITIALIZER { { ATOMIC_INITIALIZER_UINTPTR( 0 ) } }
/**
- * @brief Initializes an SMP MCS lock.
+ * @brief Initializes the SMP MCS lock.
*
* Concurrent initialization leads to unpredictable results.
*
- * @param lock The SMP MCS lock control.
+ * @param[in, out] lock The SMP MCS lock control.
*/
static inline void _SMP_MCS_lock_Initialize( SMP_MCS_lock_Control *lock )
{
@@ -116,17 +116,24 @@ static inline void _SMP_MCS_lock_Initialize( SMP_MCS_lock_Control *lock )
}
/**
- * @brief Destroys an SMP MCS lock.
+ * @brief Destroys the SMP MCS lock.
*
* Concurrent destruction leads to unpredictable results.
*
- * @param lock The SMP MCS lock control.
+ * @param[out] lock The SMP MCS lock control.
*/
static inline void _SMP_MCS_lock_Destroy( SMP_MCS_lock_Control *lock )
{
(void) lock;
}
+/**
+ * @brief Acquires the SMP MCS lock.
+ *
+ * @param[in, out] lock The lock to acquire.
+ * @param[in, out] context The lock context.
+ * @param stats the SMP lock statistics.
+ */
static inline void _SMP_MCS_lock_Do_acquire(
SMP_MCS_lock_Control *lock,
SMP_MCS_lock_Context *context
@@ -199,8 +206,8 @@ static inline void _SMP_MCS_lock_Do_acquire(
/**
* @brief Releases an SMP MCS lock.
*
- * @param lock The SMP MCS lock control.
- * @param context The SMP MCS lock context.
+ * @param[in, out] lock The SMP MCS lock control.
+ * @param[in, out] context The SMP MCS lock context.
*/
static inline void _SMP_MCS_lock_Release(
SMP_MCS_lock_Control *lock,
@@ -251,7 +258,7 @@ static inline void _SMP_MCS_lock_Release(
_Atomic_Store_uint( &next->locked, 0, ATOMIC_ORDER_RELEASE );
}
-/**@}*/
+/** @} */
#ifdef __cplusplus
}