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

Last change on this file since c8f3e82 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 2.0 KB
Line 
1/*
2 *  Rate Monotonic Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/rtems/status.h>
17#include <rtems/score/isr.h>
18#include <rtems/score/object.h>
19#include <rtems/score/thread.h>
20#include <rtems/score/interr.h>
21
22#include <rtems/rtems/types.h>
23#include <rtems/rtems/ratemon.h>
24
25void _Rate_monotonic_Manager_initialization(
26  unsigned32 maximum_periods
27)
28{
29}
30
31rtems_status_code rtems_rate_monotonic_create(
32  rtems_name    name,
33  Objects_Id   *id
34)
35{
36  _Internal_error_Occurred(
37    INTERNAL_ERROR_RTEMS_API,
38    FALSE,
39    RTEMS_NOT_CONFIGURED
40  );
41  return RTEMS_NOT_CONFIGURED;
42}
43
44rtems_status_code rtems_rate_monotonic_ident(
45  rtems_name    name,
46  Objects_Id   *id
47)
48{
49  _Internal_error_Occurred(
50    INTERNAL_ERROR_RTEMS_API,
51    FALSE,
52    RTEMS_NOT_CONFIGURED
53  );
54  return RTEMS_NOT_CONFIGURED;
55}
56
57rtems_status_code rtems_rate_monotonic_cancel(
58  Objects_Id id
59)
60{
61  _Internal_error_Occurred(
62    INTERNAL_ERROR_RTEMS_API,
63    FALSE,
64    RTEMS_NOT_CONFIGURED
65  );
66  return RTEMS_NOT_CONFIGURED;
67}
68
69rtems_status_code rtems_rate_monotonic_delete(
70  Objects_Id id
71)
72{
73  _Internal_error_Occurred(
74    INTERNAL_ERROR_RTEMS_API,
75    FALSE,
76    RTEMS_NOT_CONFIGURED
77  );
78  return RTEMS_NOT_CONFIGURED;
79}
80
81rtems_status_code rtems_rate_monotonic_period(
82  Objects_Id        id,
83  rtems_interval length
84)
85{
86  _Internal_error_Occurred(
87    INTERNAL_ERROR_RTEMS_API,
88    FALSE,
89    RTEMS_NOT_CONFIGURED
90  );
91  return RTEMS_NOT_CONFIGURED;
92}
93
94void _Rate_monotonic_Timeout(
95  Objects_Id  id,
96  void       *ignored
97)
98{
99  _Internal_error_Occurred(
100    INTERNAL_ERROR_RTEMS_API,
101    FALSE,
102    RTEMS_NOT_CONFIGURED
103  );
104}
105
106boolean _Rate_monotonic_Set_state(
107Rate_monotonic_Control *the_period
108)
109{
110  _Internal_error_Occurred(
111    INTERNAL_ERROR_RTEMS_API,
112    FALSE,
113    RTEMS_NOT_CONFIGURED
114  );
115  return FALSE;
116}
Note: See TracBrowser for help on using the repository browser.