source: rtems/c/src/optman/sapi/no-io.c @ 66d9e3ad

4.104.114.84.95
Last change on this file since 66d9e3ad was 10017a72, checked in by Joel Sherrill <joel.sherrill@…>, on 02/21/96 at 22:37:47

Changed io manager initialization routine to not be static.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1/*
2 *  Input/Output Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
6 *  On-Line Applications Research Corporation (OAR).
7 *  All rights assigned to U.S. Government, 1994.
8 *
9 *  This material may be reproduced by or for the U.S. Government pursuant
10 *  to the copyright license under the clause at DFARS 252.227-7013.  This
11 *  notice must appear in all copies of this file and its derivatives.
12 *
13 *  $Id$
14 */
15
16#include <rtems/system.h>
17#include <rtems/rtems/status.h>
18#include <rtems/config.h>
19#include <rtems/io.h>
20#include <rtems/score/isr.h>
21#include <rtems/score/thread.h>
22
23void _IO_Manager_initialization(
24  rtems_driver_address_table *driver_table,
25  unsigned32                  number_of_drivers,
26  unsigned32                  number_of_devices
27)
28{
29}
30
31void _IO_Initialize_all_drivers( void )
32{
33}
34
35rtems_status_code rtems_io_register_name(
36    char *device_name,
37    rtems_device_major_number major,
38    rtems_device_minor_number minor
39  )
40{
41  return RTEMS_NOT_CONFIGURED;
42}
43
44rtems_status_code rtems_io_lookup_name(
45    const char *pathname,
46    rtems_driver_name_t **rnp
47  )
48{
49  return RTEMS_NOT_CONFIGURED;
50}
51
52rtems_status_code rtems_io_initialize(
53  rtems_device_major_number  major,
54  rtems_device_minor_number  minor,
55  void             *argument
56)
57{
58  return RTEMS_NOT_CONFIGURED;
59}
60
61rtems_status_code rtems_io_open(
62  rtems_device_major_number  major,
63  rtems_device_minor_number  minor,
64  void             *argument
65)
66{
67  return RTEMS_NOT_CONFIGURED;
68}
69
70rtems_status_code rtems_io_close(
71  rtems_device_major_number  major,
72  rtems_device_minor_number  minor,
73  void             *argument
74)
75{
76  return RTEMS_NOT_CONFIGURED;
77}
78
79rtems_status_code rtems_io_read(
80  rtems_device_major_number  major,
81  rtems_device_minor_number  minor,
82  void             *argument
83)
84{
85  return RTEMS_NOT_CONFIGURED;
86}
87
88rtems_status_code rtems_io_write(
89  rtems_device_major_number  major,
90  rtems_device_minor_number  minor,
91  void             *argument
92)
93{
94  return RTEMS_NOT_CONFIGURED;
95}
96
97rtems_status_code rtems_io_control(
98  rtems_device_major_number  major,
99  rtems_device_minor_number  minor,
100  void             *argument
101)
102{
103  return RTEMS_NOT_CONFIGURED;
104}
Note: See TracBrowser for help on using the repository browser.