summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/no_cpu/rtems/score
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-14 15:30:37 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-06-14 16:26:09 +0200
commit961669db4e08be0329661ea99597e99769990659 (patch)
treef12e999ed728d3ac499980fd941e00a746faf8e8 /cpukit/score/cpu/no_cpu/rtems/score
parentsmptests/smpschedule01: New test (diff)
downloadrtems-961669db4e08be0329661ea99597e99769990659.tar.bz2
documentation: Fix Doxygen comments
Diffstat (limited to 'cpukit/score/cpu/no_cpu/rtems/score')
-rw-r--r--cpukit/score/cpu/no_cpu/rtems/score/cpusmplock.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/cpu/no_cpu/rtems/score/cpusmplock.h b/cpukit/score/cpu/no_cpu/rtems/score/cpusmplock.h
index 387bbb47c1..479a12afe2 100644
--- a/cpukit/score/cpu/no_cpu/rtems/score/cpusmplock.h
+++ b/cpukit/score/cpu/no_cpu/rtems/score/cpusmplock.h
@@ -60,7 +60,7 @@ static inline void _CPU_SMP_lock_Initialize( CPU_SMP_lock_Control *lock )
/**
* @brief Acquires a CPU SMP lock.
*
- * @param[in/out] lock The CPU SMP lock control.
+ * @param[in,out] lock The CPU SMP lock control.
*/
static inline void _CPU_SMP_lock_Acquire( CPU_SMP_lock_Control *lock )
{
@@ -74,7 +74,7 @@ static inline void _CPU_SMP_lock_Acquire( CPU_SMP_lock_Control *lock )
/**
* @brief Releases a CPU SMP lock.
*
- * @param[in/out] lock The CPU SMP lock control.
+ * @param[in,out] lock The CPU SMP lock control.
*/
static inline void _CPU_SMP_lock_Release( CPU_SMP_lock_Control *lock )
{
@@ -84,7 +84,7 @@ static inline void _CPU_SMP_lock_Release( CPU_SMP_lock_Control *lock )
/**
* @brief Disables interrupts and acquires the CPU SMP lock.
*
- * @param[in/out] lock The CPU SMP lock control.
+ * @param[in,out] lock The CPU SMP lock control.
* @param[out] isr_cookie The ISR cookie.
*/
#define _CPU_SMP_lock_ISR_disable_and_acquire( lock, isr_cookie ) \
@@ -96,7 +96,7 @@ static inline void _CPU_SMP_lock_Release( CPU_SMP_lock_Control *lock )
/**
* @brief Releases the CPU SMP lock and enables interrupts.
*
- * @param[in/out] lock The CPU SMP lock control.
+ * @param[in,out] lock The CPU SMP lock control.
* @param[in] isr_cookie The ISR cookie.
*/
#define _CPU_SMP_lock_Release_and_ISR_enable( lock, isr_cookie ) \