source: rtems/cpukit/rtems/src/timerserverfireafter.c @ 03b900d

5
Last change on this file since 03b900d was 03b900d, checked in by Sebastian Huber <sebastian.huber@…>, on 02/18/16 at 07:36:26

score: Replace watchdog handler implementation

Use a red-black tree instead of delta chains.

Close #2344.
Update #2554.
Update #2555.
Close #2606.

  • Property mode set to 100644
File size: 928 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Timer Server Fire After
5 *  @ingroup ClassicTimer
6 */
7
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#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/rtems/timerimpl.h>
22
23rtems_status_code rtems_timer_server_fire_after(
24  rtems_id                           id,
25  rtems_interval                     ticks,
26  rtems_timer_service_routine_entry  routine,
27  void                              *user_data
28)
29{
30  Timer_server_Control *timer_server;
31
32  timer_server = _Timer_server;
33
34  if ( !timer_server )
35    return RTEMS_INCORRECT_STATE;
36
37  return _Timer_Fire_after(
38    id,
39    ticks,
40    routine,
41    user_data,
42    TIMER_INTERVAL_ON_TASK,
43    _Timer_server_Routine_adaptor
44  );
45}
Note: See TracBrowser for help on using the repository browser.