summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/include/rtems
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/itron/include/rtems/itron/mbox.h8
-rw-r--r--cpukit/itron/include/rtems/itron/msgbuffer.h8
-rw-r--r--cpukit/itron/include/rtems/itron/semaphore.h8
3 files changed, 12 insertions, 12 deletions
diff --git a/cpukit/itron/include/rtems/itron/mbox.h b/cpukit/itron/include/rtems/itron/mbox.h
index 94b13bb900..4743590e6c 100644
--- a/cpukit/itron/include/rtems/itron/mbox.h
+++ b/cpukit/itron/include/rtems/itron/mbox.h
@@ -16,13 +16,13 @@
#ifndef _RTEMS_ITRON_MBOX_H
#define _RTEMS_ITRON_MBOX_H
+#include <rtems/itron/object.h>
+#include <rtems/score/coremsg.h>
+
#ifdef __cplusplus
extern "C" {
#endif
-#include <rtems/itron/object.h>
-#include <rtems/score/coremsg.h>
-
/*
* The following defines the control block used to manage each mailbox.
*/
@@ -30,7 +30,7 @@ extern "C" {
typedef struct {
ITRON_Objects_Control Object;
uint32_t count;
- boolean do_message_priority;
+ bool do_message_priority;
CORE_message_queue_Control message_queue;
} ITRON_Mailbox_Control;
diff --git a/cpukit/itron/include/rtems/itron/msgbuffer.h b/cpukit/itron/include/rtems/itron/msgbuffer.h
index 9762c63e22..f7742cb776 100644
--- a/cpukit/itron/include/rtems/itron/msgbuffer.h
+++ b/cpukit/itron/include/rtems/itron/msgbuffer.h
@@ -16,13 +16,13 @@
#ifndef _RTEMS_ITRON_MSGBUFFER_H
#define _RTEMS_ITRON_MSGBUFFER_H
+#include <rtems/itron/object.h>
+#include <rtems/score/coremsg.h>
+
#ifdef __cplusplus
extern "C" {
#endif
-#include <rtems/itron/object.h>
-#include <rtems/score/coremsg.h>
-
/*
* The following defines the control block used to manage each
* message buffer.
@@ -30,7 +30,7 @@ extern "C" {
typedef struct {
ITRON_Objects_Control Object;
- boolean is_priority_blocking;
+ bool is_priority_blocking;
CORE_message_queue_Control message_queue;
} ITRON_Message_buffer_Control;
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;