summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
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/include
parentsmptests/smpschedule01: New test (diff)
downloadrtems-961669db4e08be0329661ea99597e99769990659.tar.bz2
documentation: Fix Doxygen comments
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/score/scheduler.h2
-rw-r--r--cpukit/score/include/rtems/score/scheduleredf.h2
-rw-r--r--cpukit/score/include/rtems/score/schedulerpriority.h2
-rw-r--r--cpukit/score/include/rtems/score/schedulersimple.h2
-rw-r--r--cpukit/score/include/rtems/score/smplock.h8
-rw-r--r--cpukit/score/include/rtems/score/thread.h2
6 files changed, 9 insertions, 9 deletions
diff --git a/cpukit/score/include/rtems/score/scheduler.h b/cpukit/score/include/rtems/score/scheduler.h
index 563d6c9598..70b9e33fd4 100644
--- a/cpukit/score/include/rtems/score/scheduler.h
+++ b/cpukit/score/include/rtems/score/scheduler.h
@@ -160,7 +160,7 @@ void _Scheduler_default_Tick( void );
/**
* @brief Unblocks the thread.
*
- * @param[in/out] thread An idle thread.
+ * @param[in,out] thread An idle thread.
* @param[in] processor This parameter is unused.
*/
void _Scheduler_default_Start_idle(
diff --git a/cpukit/score/include/rtems/score/scheduleredf.h b/cpukit/score/include/rtems/score/scheduleredf.h
index 090974bb07..b28bed1363 100644
--- a/cpukit/score/include/rtems/score/scheduleredf.h
+++ b/cpukit/score/include/rtems/score/scheduleredf.h
@@ -193,7 +193,7 @@ void _Scheduler_EDF_Unblock(
* and place it back. The rbtree ready queue is responsible for FIFO ordering
* in such a case.
*
- * @param[in/out] thread The yielding thread.
+ * @param[in,out] thread The yielding thread.
*/
void _Scheduler_EDF_Yield( Thread_Control *thread );
diff --git a/cpukit/score/include/rtems/score/schedulerpriority.h b/cpukit/score/include/rtems/score/schedulerpriority.h
index f6fdaffd7c..abd48196f2 100644
--- a/cpukit/score/include/rtems/score/schedulerpriority.h
+++ b/cpukit/score/include/rtems/score/schedulerpriority.h
@@ -161,7 +161,7 @@ void _Scheduler_priority_Unblock(
* + ready chain
* + select heir
*
- * @param[in/out] thread The yielding thread.
+ * @param[in,out] thread The yielding thread.
*/
void _Scheduler_priority_Yield( Thread_Control *thread );
diff --git a/cpukit/score/include/rtems/score/schedulersimple.h b/cpukit/score/include/rtems/score/schedulersimple.h
index 0cdc8fcd91..17514cc4c2 100644
--- a/cpukit/score/include/rtems/score/schedulersimple.h
+++ b/cpukit/score/include/rtems/score/schedulersimple.h
@@ -82,7 +82,7 @@ void _Scheduler_simple_Schedule( void );
* the timeslice counter is reset. The heir THREAD will be updated if the
* running is also the currently the heir.
*
- * @param[in/out] thread The yielding thread.
+ * @param[in,out] thread The yielding thread.
*/
void _Scheduler_simple_Yield( Thread_Control *thread );
diff --git a/cpukit/score/include/rtems/score/smplock.h b/cpukit/score/include/rtems/score/smplock.h
index d444d181ee..2f12fddbaa 100644
--- a/cpukit/score/include/rtems/score/smplock.h
+++ b/cpukit/score/include/rtems/score/smplock.h
@@ -83,7 +83,7 @@ static inline void _SMP_lock_Initialize( SMP_lock_Control *lock )
* current thread of execution is not interrupted indefinite once it obtained
* the SMP lock.
*
- * @param[in/out] lock The SMP lock control.
+ * @param[in,out] lock The SMP lock control.
*/
static inline void _SMP_lock_Acquire( SMP_lock_Control *lock )
{
@@ -93,7 +93,7 @@ static inline void _SMP_lock_Acquire( SMP_lock_Control *lock )
/**
* @brief Releases a SMP lock.
*
- * @param[in/out] lock The SMP lock control.
+ * @param[in,out] lock The SMP lock control.
*/
static inline void _SMP_lock_Release( SMP_lock_Control *lock )
{
@@ -103,7 +103,7 @@ static inline void _SMP_lock_Release( SMP_lock_Control *lock )
/**
* @brief Disables interrupts and acquires the SMP lock.
*
- * @param[in/out] lock The SMP lock control.
+ * @param[in,out] lock The SMP lock control.
* @param[out] isr_cookie The ISR cookie.
*/
#define _SMP_lock_ISR_disable_and_acquire( lock, isr_cookie ) \
@@ -112,7 +112,7 @@ static inline void _SMP_lock_Release( SMP_lock_Control *lock )
/**
* @brief Releases the SMP lock and enables interrupts.
*
- * @param[in/out] lock The SMP lock control.
+ * @param[in,out] lock The SMP lock control.
* @param[in] isr_cookie The ISR cookie.
*/
#define _SMP_lock_Release_and_ISR_enable( lock, isr_cookie ) \
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 56b9b0cdf9..13b7e7516d 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -599,7 +599,7 @@ bool _Thread_Initialize(
* @param entry_point
* @param pointer_argument
* @param numeric_argument
- * @param[in/out] processor The processor if used to start an idle thread
+ * @param[in,out] processor The processor if used to start an idle thread
* during system initialization. Must be set to @c NULL to start a normal
* thread.
*/