From 484a76996eeb65ad726b65946642516c70b3257b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 4 Sep 2008 17:46:39 +0000 Subject: Convert to "bool". --- cpukit/rtems/src/tasks.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/rtems/src/tasks.c') diff --git a/cpukit/rtems/src/tasks.c b/cpukit/rtems/src/tasks.c index b49975bb6f..2ccacd677e 100644 --- a/cpukit/rtems/src/tasks.c +++ b/cpukit/rtems/src/tasks.c @@ -43,7 +43,7 @@ * area. */ -boolean _RTEMS_tasks_Create_extension( +bool _RTEMS_tasks_Create_extension( Thread_Control *executing, Thread_Control *created ) @@ -63,7 +63,7 @@ boolean _RTEMS_tasks_Create_extension( api = _Workspace_Allocate( to_allocate ); if ( !api ) - return FALSE; + return false; created->API_Extensions[ THREAD_API_RTEMS ] = api; @@ -76,7 +76,7 @@ boolean _RTEMS_tasks_Create_extension( api->Notepads[i] = 0; } - return TRUE; + return true; } /*PAGE -- cgit v1.2.3