summaryrefslogtreecommitdiffstats
path: root/doc/user/sem.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-08 13:49:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-08 13:49:19 +0000
commit8ad2468ccfb8b41f464f1e8f190c407403d9eebd (patch)
tree3c5a3686b207c63f67de233fbea1bc9c3c510ce8 /doc/user/sem.t
parent2008-08-07 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-8ad2468ccfb8b41f464f1e8f190c407403d9eebd.tar.bz2
2008-08-08 Sebastian Huber <sebastian.huber@embedded-brains.de>
* user/msg.t, user/sem.t, user/task.t: Update to new parameter types. Emphasize that you can use a pointer for task arguments.
Diffstat (limited to 'doc/user/sem.t')
-rw-r--r--doc/user/sem.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/sem.t b/doc/user/sem.t
index 29876a5d15..f85056e28d 100644
--- a/doc/user/sem.t
+++ b/doc/user/sem.t
@@ -628,7 +628,7 @@ reclaimed when the semaphore is deleted.
@example
rtems_status_code rtems_semaphore_obtain(
rtems_id id,
- uint32_t option_set,
+ rtems_option option_set,
rtems_interval timeout
);
@end example
@@ -812,7 +812,7 @@ id. Since there are tasks blocked on the semaphore, the semaphore's
count is not changed by this directive and thus is zero before and
after this directive is executed. Tasks which are unblocked as the
result of this directive will return from the
-@code{@value{DIRPREFIX}semaphore_release} directive with a
+@code{@value{DIRPREFIX}semaphore_obtain} directive with a
status code of @code{@value{RPREFIX}UNSATISFIED} to indicate
that the semaphore was not obtained.