summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/userext.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 17:46:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 17:46:39 +0000
commit484a76996eeb65ad726b65946642516c70b3257b (patch)
tree6aed4eba45d4eb704f004622ecbf63e275bb876c /cpukit/score/include/rtems/score/userext.h
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-484a76996eeb65ad726b65946642516c70b3257b.tar.bz2
Convert to "bool".
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/userext.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/userext.h b/cpukit/score/include/rtems/score/userext.h
index b8bcc0c2ff..8fa1d30deb 100644
--- a/cpukit/score/include/rtems/score/userext.h
+++ b/cpukit/score/include/rtems/score/userext.h
@@ -56,7 +56,7 @@ typedef void User_extensions_routine;
* This type defines the prototype of a thread creation extension handler.
* The handler is passed the thread executing and the thread being created.
*/
-typedef boolean ( *User_extensions_thread_create_extension )(
+typedef bool ( *User_extensions_thread_create_extension )(
Thread_Control *,
Thread_Control *
);
@@ -130,7 +130,7 @@ typedef User_extensions_routine ( *User_extensions_thread_exitted_extension )(
*/
typedef User_extensions_routine ( *User_extensions_fatal_extension )(
Internal_errors_Source /* the_source */,
- boolean /* is_internal */,
+ bool /* is_internal */,
uint32_t /* the_error */
);
@@ -253,7 +253,7 @@ void _User_extensions_Remove_set (
* @return This method returns TRUE if the user extension executed
* successfully.
*/
-boolean _User_extensions_Thread_create (
+bool _User_extensions_Thread_create (
Thread_Control *the_thread
);
@@ -337,7 +337,7 @@ void _User_extensions_Thread_exitted (
*/
void _User_extensions_Fatal (
Internal_errors_Source the_source,
- boolean is_internal,
+ bool is_internal,
uint32_t the_error
);