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/coremutexsurrender.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/src/coremutexsurrender.c') diff --git a/cpukit/score/src/coremutexsurrender.c b/cpukit/score/src/coremutexsurrender.c index 47ca7de8db..9db3f82bf7 100644 --- a/cpukit/score/src/coremutexsurrender.c +++ b/cpukit/score/src/coremutexsurrender.c @@ -121,11 +121,11 @@ CORE_mutex_Status _CORE_mutex_Surrender( _CORE_mutex_Is_priority_ceiling( &the_mutex->Attributes ) ) { #ifdef __RTEMS_STRICT_ORDER_MUTEX__ if(the_mutex->queue.priority_before != holder->current_priority) - _Thread_Change_priority(holder,the_mutex->queue.priority_before,TRUE); + _Thread_Change_priority(holder,the_mutex->queue.priority_before,true); #endif if ( holder->resource_count == 0 && holder->real_priority != holder->current_priority ) { - _Thread_Change_priority( holder, holder->real_priority, TRUE ); + _Thread_Change_priority( holder, holder->real_priority, true ); } } @@ -174,7 +174,7 @@ CORE_mutex_Status _CORE_mutex_Surrender( _Thread_Change_priority( the_thread, the_mutex->Attributes.priority_ceiling, - FALSE + false ); } break; -- cgit v1.2.3