source: rtems/cpukit/itron/include/rtems/itron/port.h @ 6df1f64

4.104.114.84.95
Last change on this file since 6df1f64 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.1 KB
Line 
1/**
2 * @file rtems/itron/port.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_PORT_H
17#define _RTEMS_ITRON_PORT_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 port.
27 */
28
29typedef struct {
30  ITRON_Objects_Control   Object;
31  uint32_t                XXX_more_stuff_goes_here;
32}   ITRON_Port_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_Port_Information;
40
41/*
42 *  _ITRON_Port_Manager_initialization
43 *
44 *  DESCRIPTION:
45 *
46 *  This routine performs the initialization necessary for this manager.
47 */
48
49void _ITRON_Port_Manager_initialization(
50  uint32_t   maximum_ports
51);
52
53/*
54 *  XXX insert private stuff here
55 */
56
57#include <rtems/itron/port.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.