From aae7f1a12b1d5bfe7233ce45532dba3ce651357b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 22 Dec 2008 05:52:32 +0000 Subject: Eliminate TRUE/FALSE. --- cpukit/score/src/threadrotatequeue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/src/threadrotatequeue.c') 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 ); } -- cgit v1.2.3