source: rtems/c/src/optman/sapi/no-io.c @ 51f55b87

4.104.115
Last change on this file since 51f55b87 was 4522dba, checked in by Joel Sherrill <joel.sherrill@…>, on 05/29/07 at 19:59:46

2007-05-29 Joel Sherrill <joel.sherrill@…>

  • optman/sapi/no-io.c: Split IO Manager into one function per file so now we only need required initialization methods.
  • Property mode set to 100644
File size: 693 bytes
Line 
1/*
2 *  Input/Output Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/rtems/status.h>
17#include <rtems/io.h>
18#include <rtems/score/isr.h>
19#include <rtems/score/thread.h>
20#include <rtems/score/interr.h>
21
22void _IO_Manager_initialization(
23  rtems_driver_address_table *driver_table,
24  uint32_t                    drivers_in_table,
25  uint32_t                    number_of_drivers
26)
27{
28}
29
30void _IO_Initialize_all_drivers( void )
31{
32}
Note: See TracBrowser for help on using the repository browser.