From 22d66ab1af9cafec423a78692286c64b4da1c80b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 4 Sep 2008 16:04:00 +0000 Subject: Convert to "bool". --- cpukit/itron/include/rtems/itron/semaphore.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/itron/include/rtems/itron/semaphore.h') diff --git a/cpukit/itron/include/rtems/itron/semaphore.h b/cpukit/itron/include/rtems/itron/semaphore.h index 61f5913d84..28d886cb41 100644 --- a/cpukit/itron/include/rtems/itron/semaphore.h +++ b/cpukit/itron/include/rtems/itron/semaphore.h @@ -16,20 +16,20 @@ #ifndef _RTEMS_ITRON_SEMAPHORE_H #define _RTEMS_ITRON_SEMAPHORE_H +#include +#include + #ifdef __cplusplus extern "C" { #endif -#include -#include - /* * The following defines the control block used to manage each semaphore. */ typedef struct { ITRON_Objects_Control Object; - boolean is_priority_blocking; + bool is_priority_blocking; CORE_semaphore_Control semaphore; } ITRON_Semaphore_Control; -- cgit v1.2.3