/* * Rate Monotonic 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$ */ #include #include #include #include #include #include #include #include void _Rate_monotonic_Manager_initialization( unsigned32 maximum_periods ) { } rtems_status_code rtems_rate_monotonic_create( rtems_name name, Objects_Id *id ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_rate_monotonic_ident( rtems_name name, Objects_Id *id ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_rate_monotonic_cancel( Objects_Id id ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_rate_monotonic_delete( Objects_Id id ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } rtems_status_code rtems_rate_monotonic_period( Objects_Id id, rtems_interval length ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return RTEMS_NOT_CONFIGURED; } void _Rate_monotonic_Timeout( Objects_Id id, void *ignored ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); } boolean _Rate_monotonic_Set_state( Rate_monotonic_Control *the_period ) { _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, RTEMS_NOT_CONFIGURED ); return FALSE; }