summaryrefslogtreecommitdiffstats
path: root/doc/user/userext.t
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-09 08:19:38 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-09 08:19:38 +0000
commiteaf1c0c44c8081f0c43bb172ddcf8d8307cc2c8a (patch)
treeb087b529cce647905024190d5ace0a70d9d0c1d1 /doc/user/userext.t
parent2008-09-09 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-eaf1c0c44c8081f0c43bb172ddcf8d8307cc2c8a.tar.bz2
More "bool" cleanup.
Diffstat (limited to '')
-rw-r--r--doc/user/userext.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/user/userext.t b/doc/user/userext.t
index fbcb93b0cd..4b41a26b85 100644
--- a/doc/user/userext.t
+++ b/doc/user/userext.t
@@ -210,7 +210,7 @@ following:
@findex rtems_extension
@ifset is-C
@example
-boolean user_task_create(
+bool user_task_create(
rtems_tcb *current_task,
rtems_tcb *new_task
);
@@ -235,11 +235,11 @@ completely initialized, but before it is placed on a ready TCB
chain.
The user extension is expected to return the boolean
-value @code{TRUE} if it successfully executed and
-@code{FALSE} otherwise. A task create user extension
+value @code{true} if it successfully executed and
+@code{false} otherwise. A task create user extension
will frequently attempt to allocate resources. If this
allocation fails, then the extension should return
-@code{FALSE} and the entire task create operation
+@code{false} and the entire task create operation
will fail.
@subsubsection TASK_START Extension