source: rtems/cpukit/itron/include/itron.h @ eb02f47

4.104.114.84.95
Last change on this file since eb02f47 was 352c9b2, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/99 at 22:07:23

This patch adds the basic framework for the ITRON 3.0 API implementation
for RTEMS.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  The license and distribution terms for this file may be
3 *  found in the file LICENSE in this distribution or at
4 *  http://www.OARcorp.com/rtems/license.html.
5 *
6 *  $Id$
7 */
8
9#ifndef __ITRON_h_
10#define __ITRON_h_
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16/*
17 *  Include the basic requirements
18 */
19
20#include <rtems/system.h>        /* basic RTEMS types defined by */
21                                 /*   each port */
22#include <itronsys/types.h>      /* define all the TRON types */
23                                 /*   in terms of the RTEMS base types */
24#include <itronsys/status.h>     /* define all ITRON status codes */
25
26/*
27 *  Now include the per manager include files
28 */
29
30#include <itronsys/eventflags.h>
31#include <itronsys/fmempool.h>
32#include <itronsys/intr.h>
33#include <itronsys/mbox.h>
34#include <itronsys/msgbuffer.h>
35#include <itronsys/sysmgmt.h>  /* network depends on this file */
36#include <itronsys/network.h>
37#include <itronsys/port.h>
38#include <itronsys/semaphore.h>
39#include <itronsys/task.h>
40#include <itronsys/time.h>
41#include <itronsys/vmempool.h>
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif
48/* end of include file */
49
Note: See TracBrowser for help on using the repository browser.