summaryrefslogtreecommitdiffstats
path: root/doc/user/sem.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/sem.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/sem.t')
-rw-r--r--doc/user/sem.t14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/user/sem.t b/doc/user/sem.t
index 5e49c0ce54..8bd3bbd611 100644
--- a/doc/user/sem.t
+++ b/doc/user/sem.t
@@ -386,7 +386,7 @@ constants, usage, and status codes.
@example
rtems_status_code rtems_semaphore_create(
rtems_name name,
- rtems_unsigned32 count,
+ uint32_t count,
rtems_attribute attribute_set,
rtems_task_priority priority_ceiling,
rtems_id *id
@@ -499,9 +499,9 @@ the Configuration Table.
@findex rtems_semaphore_ident
@example
rtems_status_code rtems_semaphore_ident(
- rtems_name name,
- rtems_unsigned32 node,
- rtems_id *id
+ rtems_name name,
+ uint32_t node,
+ rtems_id *id
);
@end example
@end ifset
@@ -627,9 +627,9 @@ reclaimed when the semaphore is deleted.
@findex rtems_semaphore_obtain
@example
rtems_status_code rtems_semaphore_obtain(
- rtems_id id,
- rtems_unsigned32 option_set,
- rtems_interval timeout
+ rtems_id id,
+ uint32_t option_set,
+ rtems_interval timeout
);
@end example
@end ifset