source: rtems/c/src/optman/rtems/no-timer.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.5 KB
Line 
1/*
2 *  Timer 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/object.h>
18#include <rtems/thread.h>
19#include <rtems/timer.h>
20#include <rtems/tod.h>
21#include <rtems/watchdog.h>
22
23void _Timer_Manager_initialization(
24  unsigned32 maximum_timers
25)
26{
27}
28
29rtems_status_code rtems_timer_create(
30  rtems_name    name,
31  Objects_Id   *id
32)
33{
34  return( RTEMS_NOT_CONFIGURED );
35}
36
37rtems_status_code rtems_timer_ident(
38  rtems_name    name,
39  Objects_Id   *id
40)
41{
42  return( RTEMS_NOT_CONFIGURED );
43}
44
45rtems_status_code rtems_timer_cancel(
46  Objects_Id id
47)
48{
49  return( RTEMS_NOT_CONFIGURED );
50}
51
52rtems_status_code rtems_timer_delete(
53  Objects_Id id
54)
55{
56  return( RTEMS_NOT_CONFIGURED );
57}
58
59rtems_status_code rtems_timer_fire_after(
60  Objects_Id         id,
61  rtems_interval  ticks,
62  Timer_Service      routine,
63  void              *user_data
64)
65{
66  return( RTEMS_NOT_CONFIGURED );
67}
68
69rtems_status_code rtems_timer_fire_when(
70  Objects_Id          id,
71  rtems_time_of_day        *wall_time,
72  Timer_Service       routine,
73  void               *user_data
74)
75{
76  return( RTEMS_NOT_CONFIGURED );
77}
78
79rtems_status_code rtems_timer_reset(
80  Objects_Id id
81)
82{
83  return( RTEMS_NOT_CONFIGURED );
84}
Note: See TracBrowser for help on using the repository browser.