URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [sapi/] [optman/] [no-io.c] - Rev 389
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Input/Output Manager * * * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.OARcorp.com/rtems/license.html. * * $Id: no-io.c,v 1.2 2001-09-27 11:59:20 chris Exp $ */ #include <rtems/system.h> #include <rtems/rtems/status.h> #include <rtems/io.h> #include <rtems/score/isr.h> #include <rtems/score/thread.h> #include <rtems/score/interr.h> void _IO_Manager_initialization( rtems_driver_address_table *driver_table, unsigned32 number_of_drivers, unsigned32 number_of_devices ) { } void _IO_Initialize_all_drivers( void ) { } rtems_status_code rtems_io_register_name( char *device_name, rtems_device_major_number major, rtems_device_minor_number minor ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_io_lookup_name( const char *pathname, rtems_driver_name_t **rnp ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_io_initialize( rtems_device_major_number major, rtems_device_minor_number minor, void *argument ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_io_open( rtems_device_major_number major, rtems_device_minor_number minor, void *argument ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_io_close( rtems_device_major_number major, rtems_device_minor_number minor, void *argument ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_io_read( rtems_device_major_number major, rtems_device_minor_number minor, void *argument ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_io_write( rtems_device_major_number major, rtems_device_minor_number minor, void *argument ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_io_control( rtems_device_major_number major, rtems_device_minor_number minor, void *argument ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; }
Go to most recent revision | Compare with Previous | Blame | View Log