summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/event.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/event.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/event.h')
-rw-r--r--cpukit/include/rtems/rtems/event.h23
1 files changed, 4 insertions, 19 deletions
diff --git a/cpukit/include/rtems/rtems/event.h b/cpukit/include/rtems/rtems/event.h
index 0307fa4c8c..f37060a3f4 100644
--- a/cpukit/include/rtems/rtems/event.h
+++ b/cpukit/include/rtems/rtems/event.h
@@ -1,20 +1,9 @@
/**
- * @file rtems/rtems/event.h
+ * @file
*
- * @defgroup ClassicEvent Events
- *
- * @ingroup ClassicRTEMS
- * @brief Information Related to Event Manager
- *
- * This include file contains the information pertaining to the Event
- * Manager. This manager provides a high performance method of communication
- * and synchronization.
- *
- * Directives provided are:
- *
- * - send an event set to a task
- * - receive event condition
+ * @ingroup ClassicEvent
*
+ * @brief Classic Event Manager API
*/
/* COPYRIGHT (c) 1989-2008.
@@ -28,9 +17,9 @@
#ifndef _RTEMS_RTEMS_EVENT_H
#define _RTEMS_RTEMS_EVENT_H
+#include <rtems/rtems/options.h>
#include <rtems/rtems/status.h>
#include <rtems/rtems/types.h>
-#include <rtems/rtems/options.h>
#ifdef __cplusplus
extern "C" {
@@ -513,10 +502,6 @@ RTEMS_INLINE_ROUTINE void rtems_event_transient_clear( void )
/** @} */
-typedef struct {
- rtems_event_set pending_events;
-} Event_Control;
-
#ifdef __cplusplus
}
#endif