From 18ca4e8b7083e8229c0b628ba3d30778de6d8f9b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 29 Jan 2008 23:58:17 +0000 Subject: 2008-01-29 Joel Sherrill * score/Doxyfile: Update to latest Doxygen format. * score/include/rtems/score/apimutex.h, score/include/rtems/score/corebarrier.h, score/include/rtems/score/coremutex.h, score/include/rtems/score/corerwlock.h, score/include/rtems/score/heap.h, score/include/rtems/score/object.h, score/include/rtems/score/protectedheap.h, score/include/rtems/score/thread.h, score/include/rtems/score/threadsync.h, score/include/rtems/score/tod.h, score/inline/rtems/score/corerwlock.inl, score/inline/rtems/score/corespinlock.inl: Remove most doxygen warnings. --- cpukit/score/inline/rtems/score/corerwlock.inl | 4 ++-- cpukit/score/inline/rtems/score/corespinlock.inl | 12 ++++++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) (limited to 'cpukit/score/inline') diff --git a/cpukit/score/inline/rtems/score/corerwlock.inl b/cpukit/score/inline/rtems/score/corerwlock.inl index 31ca5f0dc0..55d5fa71cb 100644 --- a/cpukit/score/inline/rtems/score/corerwlock.inl +++ b/cpukit/score/inline/rtems/score/corerwlock.inl @@ -1,12 +1,12 @@ /** - * @file rtems/score/coreRWLock.inl + * @file rtems/score/corerwlock.inl * * This include file contains all of the inlined routines associated * with the SuperCore RWLock. */ /* - * COPYRIGHT (c) 1989-2006. + * COPYRIGHT (c) 1989-2008. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be diff --git a/cpukit/score/inline/rtems/score/corespinlock.inl b/cpukit/score/inline/rtems/score/corespinlock.inl index e0f3feeec2..9f83deec49 100644 --- a/cpukit/score/inline/rtems/score/corespinlock.inl +++ b/cpukit/score/inline/rtems/score/corespinlock.inl @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2006. + * COPYRIGHT (c) 1989-2008. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -24,6 +24,15 @@ * @{ */ +/** + * + * This method is used to determine if the spinlock is available or not. + * + * @param[in] the_spinlock will be checked + * + * @return This method will return TRUE if the spinlock is busy + * and FALSE otherwise. + */ RTEMS_INLINE_ROUTINE boolean _CORE_spinlock_Is_busy( CORE_spinlock_Control *the_spinlock ) @@ -31,7 +40,6 @@ RTEMS_INLINE_ROUTINE boolean _CORE_spinlock_Is_busy( return (the_spinlock->users != 0); } - /**@}*/ #endif -- cgit v1.2.3