source: rtems/cpukit/include/rtems/rtems/eventdata.h @ 21275b58

5
Last change on this file since 21275b58 was efc227cd, checked in by Sebastian Huber <sebastian.huber@…>, on 11/08/18 at 09:24:19

rtems: Move internal structures to eventdata.h

Update #3598.

  • Property mode set to 100644
File size: 676 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup ClassicEventImpl
5 *
6 * @brief Classic Event Manager Data Structures
7 */
8
9/* COPYRIGHT (c) 1989-2008.
10 * On-Line Applications Research Corporation (OAR).
11 *
12 * The license and distribution terms for this file may be
13 * found in the file LICENSE in this distribution or at
14 * http://www.rtems.org/license/LICENSE.
15 */
16
17#ifndef _RTEMS_RTEMS_EVENTDATA_H
18#define _RTEMS_RTEMS_EVENTDATA_H
19
20#include <rtems/rtems/event.h>
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26/**
27 * @addtogroup ClassicEventImpl
28 *
29 * @{
30 */
31
32typedef struct {
33  rtems_event_set pending_events;
34} Event_Control;
35
36/** @} */
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif
43/* end of include file */
Note: See TracBrowser for help on using the repository browser.