summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/eventdata.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-08 10:24:19 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-12 13:25:40 +0100
commitefc227cd7dfeba75d6d68b88a7db715bc53cbdec (patch)
tree2e9485581cd4d681d90315ee71cb7a613f30d9d4 /cpukit/include/rtems/rtems/eventdata.h
parentrtems: Move internal structures to dpmemdata.h (diff)
downloadrtems-efc227cd7dfeba75d6d68b88a7db715bc53cbdec.tar.bz2
rtems: Move internal structures to eventdata.h
Update #3598.
Diffstat (limited to 'cpukit/include/rtems/rtems/eventdata.h')
-rw-r--r--cpukit/include/rtems/rtems/eventdata.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/cpukit/include/rtems/rtems/eventdata.h b/cpukit/include/rtems/rtems/eventdata.h
new file mode 100644
index 0000000000..16ff7a3981
--- /dev/null
+++ b/cpukit/include/rtems/rtems/eventdata.h
@@ -0,0 +1,43 @@
+/**
+ * @file
+ *
+ * @ingroup ClassicEventImpl
+ *
+ * @brief Classic Event Manager Data Structures
+ */
+
+/* COPYRIGHT (c) 1989-2008.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#ifndef _RTEMS_RTEMS_EVENTDATA_H
+#define _RTEMS_RTEMS_EVENTDATA_H
+
+#include <rtems/rtems/event.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @addtogroup ClassicEventImpl
+ *
+ * @{
+ */
+
+typedef struct {
+ rtems_event_set pending_events;
+} Event_Control;
+
+/** @} */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+/* end of include file */