summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/include/rtems/itron/semaphore.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 16:04:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 16:04:00 +0000
commit22d66ab1af9cafec423a78692286c64b4da1c80b (patch)
treeae1d5b5934a07f5c4906d754f3acac4812e4a4a6 /cpukit/itron/include/rtems/itron/semaphore.h
parentConvert to "bool". (diff)
downloadrtems-22d66ab1af9cafec423a78692286c64b4da1c80b.tar.bz2
Convert to "bool".
Diffstat (limited to '')
-rw-r--r--cpukit/itron/include/rtems/itron/semaphore.h8
1 files changed, 4 insertions, 4 deletions
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 <rtems/itron/object.h>
+#include <rtems/score/coresem.h>
+
#ifdef __cplusplus
extern "C" {
#endif
-#include <rtems/itron/object.h>
-#include <rtems/score/coresem.h>
-
/*
* 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;