summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadstart.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/threadstart.c')
-rw-r--r--cpukit/score/src/threadstart.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpukit/score/src/threadstart.c b/cpukit/score/src/threadstart.c
index 15701b82c0..07fcd217c5 100644
--- a/cpukit/score/src/threadstart.c
+++ b/cpukit/score/src/threadstart.c
@@ -40,7 +40,7 @@
* thread competes with all other threads for CPU time.
*/
-boolean _Thread_Start(
+bool _Thread_Start(
Thread_Control *the_thread,
Thread_Start_types the_prototype,
void *entry_point,
@@ -62,9 +62,8 @@ boolean _Thread_Start(
_User_extensions_Thread_start( the_thread );
- return TRUE;
+ return true;
}
- return FALSE;
-
+ return false;
}