summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-09 07:23:42 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-09 07:23:42 +0000
commitb2adb4528f069544578b1f649d8be2efc15a25d4 (patch)
tree374fa6c723e47129b369f4664fa3a0ffba33beb3 /doc
parent2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-b2adb4528f069544578b1f649d8be2efc15a25d4.tar.bz2
Convert to "bool".
Diffstat (limited to 'doc')
-rw-r--r--doc/user/intr.t2
-rw-r--r--doc/user/userext.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/intr.t b/doc/user/intr.t
index a1d2196ac3..e9b8e84f8a 100644
--- a/doc/user/intr.t
+++ b/doc/user/intr.t
@@ -441,7 +441,7 @@ This directive will not cause the calling task to be preempted.
@ifset is-C
@findex rtems_interrupt_is_in_progress
@example
-rtems_boolean rtems_interrupt_is_in_progress( void );
+bool rtems_interrupt_is_in_progress( void );
@end example
@end ifset
diff --git a/doc/user/userext.t b/doc/user/userext.t
index 2a6fad440a..fbcb93b0cd 100644
--- a/doc/user/userext.t
+++ b/doc/user/userext.t
@@ -465,7 +465,7 @@ This extension should have a prototype similar to the following:
@example
rtems_extension user_fatal_error(
Internal_errors_Source the_source,
- rtems_boolean is_internal,
+ bool is_internal,
uint32_t the_error
);
@end example