summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthread.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 15:23:12 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 15:23:12 +0000
commitf8437c81d5e191ebe10374938974315aee07faf3 (patch)
tree81e073f66d0e943a7067e5b36923dd1a10219137 /cpukit/posix/src/pthread.c
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f8437c81d5e191ebe10374938974315aee07faf3.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/posix/src/pthread.c')
-rw-r--r--cpukit/posix/src/pthread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/posix/src/pthread.c b/cpukit/posix/src/pthread.c
index 30989e0f03..4a53d939be 100644
--- a/cpukit/posix/src/pthread.c
+++ b/cpukit/posix/src/pthread.c
@@ -136,7 +136,7 @@ void _POSIX_Threads_Sporadic_budget_callout(
* XXX
*/
-boolean _POSIX_Threads_Create_extension(
+bool _POSIX_Threads_Create_extension(
Thread_Control *executing,
Thread_Control *created
)
@@ -147,7 +147,7 @@ boolean _POSIX_Threads_Create_extension(
api = _Workspace_Allocate( sizeof( POSIX_API_Control ) );
if ( !api )
- return FALSE;
+ return false;
created->API_Extensions[ THREAD_API_POSIX ] = api;
@@ -196,7 +196,7 @@ boolean _POSIX_Threads_Create_extension(
created
);
- return TRUE;
+ return true;
}
/*PAGE