summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/task.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 16:04:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 16:04:00 +0000
commit22d66ab1af9cafec423a78692286c64b4da1c80b (patch)
treeae1d5b5934a07f5c4906d754f3acac4812e4a4a6 /cpukit/itron/src/task.c
parentConvert to "bool". (diff)
downloadrtems-22d66ab1af9cafec423a78692286c64b4da1c80b.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/itron/src/task.c')
-rw-r--r--cpukit/itron/src/task.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/itron/src/task.c b/cpukit/itron/src/task.c
index 2d1f5ef59a..b52663d160 100644
--- a/cpukit/itron/src/task.c
+++ b/cpukit/itron/src/task.c
@@ -35,7 +35,7 @@
* area.
*/
-boolean _ITRON_Task_Create_extension(
+bool _ITRON_Task_Create_extension(
Thread_Control *executing,
Thread_Control *created
)
@@ -50,7 +50,7 @@ boolean _ITRON_Task_Create_extension(
api = _Workspace_Allocate( sizeof( ITRON_API_Control ) );
if ( !api )
- return FALSE;
+ return false;
created->API_Extensions[ THREAD_API_ITRON ] = api;
#else
@@ -61,7 +61,7 @@ boolean _ITRON_Task_Create_extension(
* Initialize the ITRON API extension
*/
- return TRUE;
+ return true;
}
/*