summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-29 23:58:17 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-29 23:58:17 +0000
commit18ca4e8b7083e8229c0b628ba3d30778de6d8f9b (patch)
treea5b0295e8a604544545c4929bfbaa3fbb328e3e1 /cpukit/score/inline
parent2008-01-29 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-18ca4e8b7083e8229c0b628ba3d30778de6d8f9b.tar.bz2
2008-01-29 Joel Sherrill <joel.sherrill@oarcorp.com>
* 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.
Diffstat (limited to 'cpukit/score/inline')
-rw-r--r--cpukit/score/inline/rtems/score/corerwlock.inl4
-rw-r--r--cpukit/score/inline/rtems/score/corespinlock.inl12
2 files changed, 12 insertions, 4 deletions
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