source: rtems/c/src/exec/sapi/optman/no-io.c @ ac7d5ef0

4.104.114.84.95
Last change on this file since ac7d5ef0 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • 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/config.h>
18#include <rtems/io.h>
19#include <rtems/isr.h>
20#include <rtems/thread.h>
21
22void _IO_Initialize_all_drivers( void )
23{
24}
25
26rtems_status_code rtems_io_initialize(
27  rtems_device_major_number  major,
28  rtems_device_minor_number  minor,
29  void             *argument,
30  unsigned32       *return_value
31)
32{
33  return( RTEMS_NOT_CONFIGURED );
34}
35
36rtems_status_code rtems_io_open(
37  rtems_device_major_number  major,
38  rtems_device_minor_number  minor,
39  void             *argument,
40  unsigned32       *return_value
41)
42{
43  return( RTEMS_NOT_CONFIGURED );
44}
45
46rtems_status_code rtems_io_close(
47  rtems_device_major_number  major,
48  rtems_device_minor_number  minor,
49  void             *argument,
50  unsigned32       *return_value
51)
52{
53  return( RTEMS_NOT_CONFIGURED );
54}
55
56rtems_status_code rtems_io_read(
57  rtems_device_major_number  major,
58  rtems_device_minor_number  minor,
59  void             *argument,
60  unsigned32       *return_value
61)
62{
63  return( RTEMS_NOT_CONFIGURED );
64}
65
66rtems_status_code rtems_io_write(
67  rtems_device_major_number  major,
68  rtems_device_minor_number  minor,
69  void             *argument,
70  unsigned32       *return_value
71)
72{
73  return( RTEMS_NOT_CONFIGURED );
74}
75
76rtems_status_code rtems_io_control(
77  rtems_device_major_number  major,
78  rtems_device_minor_number  minor,
79  void             *argument,
80  unsigned32       *return_value
81)
82{
83  return( RTEMS_NOT_CONFIGURED );
84}
85
86rtems_status_code _IO_Handler_routine(
87  IO_operations     operation,
88  rtems_device_major_number  major,
89  rtems_device_minor_number  minor,
90  void             *argument,
91  unsigned32       *return_value
92)
93{
94  return( RTEMS_NOT_CONFIGURED );
95}
Note: See TracBrowser for help on using the repository browser.