source: rtems/c/src/optman/rtems/no-rtmon.c @ 7f6a24ab

4.104.114.84.95
Last change on this file since 7f6a24ab was 3235ad9, checked in by Joel Sherrill <joel.sherrill@…>, on 08/23/95 at 19:30:23

Support for variable length names added to Object Handler. This supports
both fixed length "raw" names and strings from the API's point of view.

Both inline and macro implementations were tested.

  • 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  rtems_name    name,
30  Objects_Id   *id
31)
32{
33  return( RTEMS_NOT_CONFIGURED );
34}
35
36rtems_status_code rtems_rate_monotonic_ident(
37  rtems_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.