summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/messagedata.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/rtems/messagedata.h')
-rw-r--r--cpukit/include/rtems/rtems/messagedata.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpukit/include/rtems/rtems/messagedata.h b/cpukit/include/rtems/rtems/messagedata.h
index fa1f681473..8c72fba078 100644
--- a/cpukit/include/rtems/rtems/messagedata.h
+++ b/cpukit/include/rtems/rtems/messagedata.h
@@ -40,8 +40,10 @@ typedef struct {
Objects_Control Object;
/** This field is the instance of the SuperCore Message Queue. */
CORE_message_queue_Control message_queue;
- /** This field is the attribute set as defined by the API. */
- rtems_attribute attribute_set;
+#if defined(RTEMS_MULTIPROCESSING)
+ /** This field is true if the message queue is offered globally */
+ bool is_global;
+#endif
} Message_queue_Control;
/**