From f8437c81d5e191ebe10374938974315aee07faf3 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 4 Sep 2008 15:23:12 +0000 Subject: Convert to "bool". --- cpukit/posix/src/testcancel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/posix/src/testcancel.c') diff --git a/cpukit/posix/src/testcancel.c b/cpukit/posix/src/testcancel.c index 2c60b0e72c..bea71203d1 100644 --- a/cpukit/posix/src/testcancel.c +++ b/cpukit/posix/src/testcancel.c @@ -33,7 +33,7 @@ void pthread_testcancel( void ) { POSIX_API_Control *thread_support; - boolean cancel = FALSE; + bool cancel = false; /* * Don't even think about deleting a resource from an ISR. @@ -49,7 +49,7 @@ void pthread_testcancel( void ) _Thread_Disable_dispatch(); if ( thread_support->cancelability_state == PTHREAD_CANCEL_ENABLE && thread_support->cancelation_requested ) - cancel = TRUE; + cancel = true; _Thread_Enable_dispatch(); if ( cancel ) -- cgit v1.2.3