summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/include/rtems/itron/semaphore.h
diff options
context:
space:
mode:
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;