RTEMS
timerfireafter.c
Go to the documentation of this file.
1 
8 /*
9  * COPYRIGHT (c) 1989-2007.
10  * On-Line Applications Research Corporation (OAR).
11  *
12  * The license and distribution terms for this file may be
13  * found in the file LICENSE in this distribution or at
14  * http://www.rtems.org/license/LICENSE.
15  */
16 
17 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20 
21 #include <rtems/rtems/timerimpl.h>
22 
24  rtems_id id,
25  rtems_interval ticks,
27  void *user_data
28 )
29 {
30  return _Timer_Fire_after(
31  id,
32  ticks,
33  routine,
34  user_data,
36  _Timer_Routine_adaptor
37  );
38 }
Classic Timer Implementation.
rtems_status_code
This enumeration provides status codes for directives of the Classic API.
Definition: status.h:82
Watchdog_Interval rtems_interval
This type is used to represent clock tick intervals.
Definition: types.h:90
Objects_Id rtems_id
Values of this type identify an RTEMS object.
Definition: types.h:99
rtems_timer_service_routine(* rtems_timer_service_routine_entry)(rtems_id, void *)
%
Definition: timer.h:158
rtems_status_code rtems_timer_fire_after(rtems_id id, rtems_interval ticks, rtems_timer_service_routine_entry routine, void *user_data)
%