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

4.104.114.84.95
Last change on this file since f26145b was 6df1f64, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 11:07:14

New header guards.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * @file itron.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 _ITRON_H
17#define _ITRON_H
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/*
24 *  Include the basic requirements
25 */
26
27#include <rtems/system.h>        /* basic RTEMS types defined by */
28                                 /*   each port */
29#include <itronsys/types.h>      /* define all the TRON types */
30                                 /*   in terms of the RTEMS base types */
31#include <itronsys/status.h>     /* define all ITRON status codes */
32
33/*
34 *  Now include the per manager include files
35 */
36
37#include <itronsys/eventflags.h>
38#include <itronsys/fmempool.h>
39#include <itronsys/intr.h>
40#include <itronsys/mbox.h>
41#include <itronsys/msgbuffer.h>
42#include <itronsys/sysmgmt.h>  /* network depends on this file */
43#include <itronsys/network.h>
44#include <itronsys/port.h>
45#include <itronsys/semaphore.h>
46#include <itronsys/task.h>
47#include <itronsys/time.h>
48#include <itronsys/vmempool.h>
49
50#ifdef __cplusplus
51}
52#endif
53
54#endif
55/* end of include file */
Note: See TracBrowser for help on using the repository browser.