summaryrefslogtreecommitdiffstats
path: root/doc/user/barrier.t
diff options
context:
space:
mode:
authorGlenn Humphrey <glenn.humphrey@oarcorp.com>2007-11-28 16:23:59 +0000
committerGlenn Humphrey <glenn.humphrey@oarcorp.com>2007-11-28 16:23:59 +0000
commitae10dbd9b6f57da2e6b8e0cc098620f902cbfd32 (patch)
tree316299f11e30f67ac69921a5e90685550a24b4f5 /doc/user/barrier.t
parentRegenerate. (diff)
downloadrtems-ae10dbd9b6f57da2e6b8e0cc098620f902cbfd32.tar.bz2
2007-11-28 Glenn Humphrey <glenn.humphrey@OARcorp.com>
* user/barrier.t, user/clock.t, user/concepts.t, user/conf.t, user/datatypes.t, user/dpmem.t, user/fatal.t, user/init.t, user/mp.t, user/msg.t, user/part.t, user/region.t, user/rtmon.t, user/sem.t, user/task.t, user/timer.t: Corrected various errors in the documentation.
Diffstat (limited to 'doc/user/barrier.t')
-rw-r--r--doc/user/barrier.t10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/user/barrier.t b/doc/user/barrier.t
index 087dd8cbe8..606d825942 100644
--- a/doc/user/barrier.t
+++ b/doc/user/barrier.t
@@ -366,7 +366,6 @@ id can delete the barrier.
@example
rtems_status_code rtems_barrier_wait(
rtems_id id,
- rtems_unsigned32 option_set,
rtems_interval timeout
);
@end example
@@ -376,7 +375,6 @@ rtems_status_code rtems_barrier_wait(
@example
procedure Barrier_Wait (
ID : in RTEMS.ID;
- Option_Set : in RTEMS.Option;
Timeout : in RTEMS.Interval;
Result : out RTEMS.Status_Codes
);
@@ -442,7 +440,8 @@ this directive.
@findex rtems_barrier_release
@example
rtems_status_code rtems_barrier_release(
- rtems_id id
+ rtems_id id,
+ uint32_t *released
);
@end example
@end ifset
@@ -450,8 +449,9 @@ rtems_status_code rtems_barrier_release(
@ifset is-Ada
@example
procedure Barrier_Release (
- ID : in RTEMS.ID;
- Result : out RTEMS.Status_Codes
+ ID : in RTEMS.ID;
+ Released : out RTEMS.Unsigned32;
+ Result : out RTEMS.Status_Codes
);
@end example
@end ifset