summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/smplock.h
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>2011-08-01 17:30:20 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>2011-08-01 17:30:20 +0000
commite3d64d4f434628151b8515782c5f80fe22b5b8d7 (patch)
treeb88749f32085eb57e4b9b78a29acd9a031628622 /cpukit/score/include/rtems/score/smplock.h
parent2011-08-01 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-e3d64d4f434628151b8515782c5f80fe22b5b8d7.tar.bz2
2011-08-01 Jennifer Averett <Jennifer.Averett@OARcorp.com>
* score/include/rtems/score/smplock.h: Fix comments.
Diffstat (limited to 'cpukit/score/include/rtems/score/smplock.h')
-rw-r--r--cpukit/score/include/rtems/score/smplock.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/smplock.h b/cpukit/score/include/rtems/score/smplock.h
index 9c565863a3..df20599a34 100644
--- a/cpukit/score/include/rtems/score/smplock.h
+++ b/cpukit/score/include/rtems/score/smplock.h
@@ -108,9 +108,10 @@ void _SMP_lock_spinlock_nested_Initialize(
* This method is used to obtain the lock at @a lock. ISR's are
* disabled when this routine returns and it is the callers responsibility
* to either:
- * 1) Do something very short and then call
+ *
+ * # Do something very short and then call
* _SMP_lock_spinlock_nested_Release or
- * 2) Do something very sort, call isr enable, then when ready
+ * # Do something very sort, call isr enable, then when ready
* call isr_disable and _SMP_lock_spinlock_nested_Release
*
* @param [in] lock is the address of the lock to obtain.
@@ -125,8 +126,9 @@ ISR_Level _SMP_lock_spinlock_nested_Obtain(
/**
* @brief Release a Lock
*
- * This method is used to release the lock at @a lock. Note:
- * ISR's are reenabled by this method and are expected to be
+ * This method is used to release the lock at @a lock.
+ *
+ * @note ISR's are reenabled by this method and are expected to be
* disabled upon entry to the method.
*
* @param [in] lock is the address of the lock to obtain.