summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/thread.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-22 05:52:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-22 05:52:32 +0000
commitaae7f1a12b1d5bfe7233ce45532dba3ce651357b (patch)
tree072e6a5712a00830e7d89115cb2ee9b1f9f1895e /cpukit/score/src/thread.c
parent2008-12-22 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-aae7f1a12b1d5bfe7233ce45532dba3ce651357b.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to 'cpukit/score/src/thread.c')
-rw-r--r--cpukit/score/src/thread.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/src/thread.c b/cpukit/score/src/thread.c
index a6774388e0..452bc012d0 100644
--- a/cpukit/score/src/thread.c
+++ b/cpukit/score/src/thread.c
@@ -65,11 +65,11 @@ void _Thread_Handler_initialization(void)
== (!Configuration.stack_free_hook) ) )
_Internal_error_Occurred(
INTERNAL_ERROR_CORE,
- TRUE,
+ true,
INTERNAL_ERROR_BAD_STACK_HOOK
);
- _Context_Switch_necessary = FALSE;
+ _Context_Switch_necessary = false;
_Thread_Executing = NULL;
_Thread_Heir = NULL;
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
@@ -108,11 +108,11 @@ void _Thread_Handler_initialization(void)
#endif
sizeof( Thread_Control ),
/* size of this object's control block */
- TRUE, /* TRUE if names for this object are strings */
+ true, /* true if names for this object are strings */
8 /* maximum length of each object's name */
#if defined(RTEMS_MULTIPROCESSING)
,
- FALSE, /* TRUE if this is a global object class */
+ false, /* true if this is a global object class */
NULL /* Proxy extraction support callout */
#endif
);