source: rtems/c/src/optman/rtems/no-rtmon.c @ 80e2c29e

4.104.114.84.95
Last change on this file since 80e2c29e was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*
2 *  Rate Monotonic 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/isr.h>
18#include <rtems/object.h>
19#include <rtems/ratemon.h>
20#include <rtems/thread.h>
21
22void _Rate_monotonic_Manager_initialization(
23  unsigned32 maximum_periods
24)
25{
26}
27
28rtems_status_code rtems_rate_monotonic_create(
29  Objects_Name  name,
30  Objects_Id   *id
31)
32{
33  return( RTEMS_NOT_CONFIGURED );
34}
35
36rtems_status_code rtems_rate_monotonic_ident(
37  Objects_Name  name,
38  Objects_Id   *id
39)
40{
41  return( RTEMS_NOT_CONFIGURED );
42}
43
44rtems_status_code rtems_rate_monotonic_cancel(
45  Objects_Id id
46)
47{
48  return( RTEMS_NOT_CONFIGURED );
49}
50
51rtems_status_code rtems_rate_monotonic_delete(
52  Objects_Id id
53)
54{
55  return( RTEMS_NOT_CONFIGURED );
56}
57
58rtems_status_code rtems_rate_monotonic_period(
59  Objects_Id        id,
60  rtems_interval length
61)
62{
63  return( RTEMS_NOT_CONFIGURED );
64}
65
66void _Rate_monotonic_Timeout(
67  Objects_Id  id,
68  void       *ignored
69)
70{
71}
72
73boolean _Rate_monotonic_Set_state(
74Rate_monotonic_Control *the_period
75)
76{
77  return( FALSE );
78}
Note: See TracBrowser for help on using the repository browser.