/* * Stub Base libio initialization * * COPYRIGHT (c) 1989-2007. * 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.rtems.com/license/LICENSE. * */ #if HAVE_CONFIG_H #include "config.h" #endif #include /* libio_.h pulls in rtems */ #include #include /* assoc.h not included by rtems.h */ #include /* O_RDONLY, et.al. */ #include /* O_RDONLY, et.al. */ #include #include #include #include /* strcmp */ #include #include /* calloc() */ #include /* libio.h not pulled in by rtems */ /* * File descriptor Table Information */ extern uint32_t rtems_libio_number_iops; rtems_id rtems_libio_semaphore; rtems_libio_t *rtems_libio_iops; rtems_libio_t *rtems_libio_iop_freelist; /* * rtems_libio_init * * Called by BSP startup code to initialize the libio subsystem. */ void rtems_libio_init( void ) { }