From 961669db4e08be0329661ea99597e99769990659 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 14 Jun 2013 15:30:37 +0200 Subject: documentation: Fix Doxygen comments --- cpukit/score/include/rtems/score/scheduler.h | 2 +- cpukit/score/include/rtems/score/scheduleredf.h | 2 +- cpukit/score/include/rtems/score/schedulerpriority.h | 2 +- cpukit/score/include/rtems/score/schedulersimple.h | 2 +- cpukit/score/include/rtems/score/smplock.h | 8 ++++---- cpukit/score/include/rtems/score/thread.h | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) (limited to 'cpukit/score/include') 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. */ -- cgit v1.2.3