source: rtems/cpukit/itron/include/rtems/itron/eventflags.h @ ed11bb26

4.104.114.84.95
Last change on this file since ed11bb26 was ed11bb26, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/21/04 at 06:05:23

Add doxygen preamble.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * @file rtems/itron/eventflags.h
3 */
4
5/*
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#ifndef __RTEMS_ITRON_EVENTFLAGS_h_
17#define __RTEMS_ITRON_EVENTFLAGS_h_
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include <rtems/itron/object.h>
24
25/*
26 *  The following defines the control block used to manage each event flag.
27 */
28
29typedef struct {
30  ITRON_Objects_Control   Object;
31  uint32_t                XXX_more_stuff_goes_here;
32}   ITRON_Eventflags_Control;
33
34/*
35 *  The following defines the information control block used to manage
36 *  this class of objects.
37 */
38
39ITRON_EXTERN Objects_Information  _ITRON_Eventflags_Information;
40
41/*
42 *  _ITRON_Eventflags_Manager_initialization
43 *
44 *  DESCRIPTION:
45 *
46 *  This routine performs the initialization necessary for this manager.
47 */
48
49void _ITRON_Eventflags_Manager_initialization(
50  uint32_t   maximum_eventflags
51);
52
53/*
54 *  XXX insert private stuff here
55 */
56
57#include <rtems/itron/eventflags.inl>
58
59#ifdef __cplusplus
60}
61#endif
62
63#endif
64/* end of include file */
Note: See TracBrowser for help on using the repository browser.