summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include
diff options
context:
space:
mode:
authorGlenn Humphrey <glenn.humphrey@oarcorp.com>2007-11-27 18:38:18 +0000
committerGlenn Humphrey <glenn.humphrey@oarcorp.com>2007-11-27 18:38:18 +0000
commit1d56a7a8b8a0b48fdeb02f6d4408a8236e8ccf95 (patch)
treef7b57219ee7fc61ccc9d0fa6023d556e954eefdb /cpukit/rtems/include
parent2007-11-27 Glenn Humphrey <glenn.humphrey@OARcorp.com> (diff)
downloadrtems-1d56a7a8b8a0b48fdeb02f6d4408a8236e8ccf95.tar.bz2
2007-11-27 Glenn Humphrey <glenn.humphrey@OARcorp.com>
* posix/src/prwlocktimedrdlock.c, posix/src/prwlocktimedwrlock.c, rtems/include/rtems/rtems/barrier.h, score/src/corerwlockobtainread.c, score/src/corerwlockobtainwrite.c, score/src/corerwlockrelease.c: Fixed several implementation errors.
Diffstat (limited to 'cpukit/rtems/include')
-rw-r--r--cpukit/rtems/include/rtems/rtems/barrier.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/barrier.h b/cpukit/rtems/include/rtems/rtems/barrier.h
index a00d2d97aa..4d0a57398e 100644
--- a/cpukit/rtems/include/rtems/rtems/barrier.h
+++ b/cpukit/rtems/include/rtems/rtems/barrier.h
@@ -145,7 +145,6 @@ rtems_status_code rtems_barrier_delete(
* clock ticks.
*
* @param[in] id indicates the barrier to wait at.
- * @param[in] option_set indicates if the caller is willing to wait.
* @param[in] timeout is the maximum length of time in ticks the calling
* thread is willing to block.
*
@@ -161,17 +160,17 @@ rtems_status_code rtems_barrier_wait(
*
* This routine implements the rtems_barrier_release directive. It
* unblocks all of the threads waiting on the barrier associated with
- * @a id. The number of threads unblocked is returns in @a unblocked.
+ * @a id. The number of threads unblocked is returned in @a released.
*
*
* @param[in] id indicates the barrier to wait at.
- * @param[out] unblocked will contain the number of threads unblocked.
+ * @param[out] released will contain the number of threads unblocked.
*
* @return a status code indicating success or the reason for failure.
*/
rtems_status_code rtems_barrier_release(
rtems_id id,
- uint32_t *unblocked
+ uint32_t *released
);
/**