summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadrotatequeue.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/threadrotatequeue.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/threadrotatequeue.c')
-rw-r--r--cpukit/score/src/threadrotatequeue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/threadrotatequeue.c b/cpukit/score/src/threadrotatequeue.c
index 28388ccbc6..899f5c01b9 100644
--- a/cpukit/score/src/threadrotatequeue.c
+++ b/cpukit/score/src/threadrotatequeue.c
@@ -38,7 +38,7 @@
* remove the running THREAD from the ready chain
* and place it immediatly at the rear of this chain. Reset timeslice
* and yield the processor functions both use this routine, therefore if
- * reset is TRUE and this is the only thread on the chain then the
+ * reset is true and this is the only thread on the chain then the
* timeslice counter is reset. The heir THREAD will be updated if the
* running is also the currently the heir.
*
@@ -84,7 +84,7 @@ void _Thread_Rotate_Ready_Queue(
_Thread_Heir = (Thread_Control *) ready->first;
if ( executing != _Thread_Heir )
- _Context_Switch_necessary = TRUE;
+ _Context_Switch_necessary = true;
_ISR_Enable( level );
}