source: rtems/cpukit/itron/include/rtems/itron/port.h @ 7ded4e37

4.104.114.84.95
Last change on this file since 7ded4e37 was 7ded4e37, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 04:00:25

Remove unnecessary white spaces.

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