source: rtems/c/src/optman/sapi/no-io.c @ 7f6a24ab

4.104.114.84.95
Last change on this file since 7f6a24ab was b06e68ef, checked in by Joel Sherrill <joel.sherrill@…>, on 08/17/95 at 19:51:51

Numerous miscellaneous features incorporated from Tony Bennett
(tbennett@…) including the following major additions:

+ variable length messages
+ named devices
+ debug monitor
+ association tables/variables

  • Property mode set to 100644
File size: 1.9 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_register_name(
27    char *device_name,
28    rtems_device_major_number major,
29    rtems_device_minor_number minor
30  )
31{
32  return RTEMS_NOT_CONFIGURED;
33}
34
35rtems_status_code rtems_io_lookup_name(
36    const char *pathname,
37    rtems_driver_name_t **rnp
38  )
39{
40  return RTEMS_NOT_CONFIGURED;
41}
42
43rtems_status_code rtems_io_initialize(
44  rtems_device_major_number  major,
45  rtems_device_minor_number  minor,
46  void             *argument
47)
48{
49  return( RTEMS_NOT_CONFIGURED );
50}
51
52rtems_status_code rtems_io_open(
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_close(
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_read(
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_write(
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_control(
89  rtems_device_major_number  major,
90  rtems_device_minor_number  minor,
91  void             *argument
92)
93{
94  return( RTEMS_NOT_CONFIGURED );
95}
Note: See TracBrowser for help on using the repository browser.