source: rtems/cpukit/rtems/src/rtemstimer.c @ db80f11

4.104.115
Last change on this file since db80f11 was db80f11, checked in by Joel Sherrill <joel.sherrill@…>, on 12/17/08 at 20:21:40

2008-12-17 Joel Sherrill <joel.sherrill@…>

  • rtems/Makefile.am, rtems/include/rtems/rtems/attr.h, rtems/include/rtems/rtems/barrier.h, rtems/include/rtems/rtems/dpmem.h, rtems/include/rtems/rtems/intr.h, rtems/include/rtems/rtems/message.h, rtems/include/rtems/rtems/part.h, rtems/include/rtems/rtems/ratemon.h, rtems/include/rtems/rtems/region.h, rtems/include/rtems/rtems/sem.h, rtems/include/rtems/rtems/tasks.h, rtems/include/rtems/rtems/timer.h, rtems/src/barrier.c, rtems/src/dpmem.c, rtems/src/msg.c, rtems/src/part.c, rtems/src/ratemon.c, rtems/src/region.c, rtems/src/rtemstimer.c, rtems/src/sem.c, rtems/src/tasks.c, sapi/src/rtemsapi.c: Convert manager initialization routines to directly pull parameters from configuration table. Eliminate empty routines sportted.
  • rtems/src/intr.c: Removed.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 *  Timer Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-2008.
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.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <rtems/system.h>
20#include <rtems/config.h>
21#include <rtems/rtems/status.h>
22#include <rtems/rtems/support.h>
23#include <rtems/score/object.h>
24#include <rtems/score/thread.h>
25#include <rtems/rtems/timer.h>
26#include <rtems/score/tod.h>
27#include <rtems/score/watchdog.h>
28
29/*PAGE
30 *
31 *  _Timer_Manager_initialization
32 *
33 *  This routine initializes all timer manager related data structures.
34 *
35 *  Input parameters: NONE
36 *
37 *  Output parameters:  NONE
38 */
39
40void _Timer_Manager_initialization(void)
41{
42  _Objects_Initialize_information(
43    &_Timer_Information,       /* object information table */
44    OBJECTS_CLASSIC_API,       /* object API */
45    OBJECTS_RTEMS_TIMERS,      /* object class */
46    Configuration_RTEMS_API.maximum_timers ,
47                               /* maximum objects of this class */
48    sizeof( Timer_Control ),   /* size of this object's control block */
49    FALSE,                     /* TRUE if the name is a string */
50    RTEMS_MAXIMUM_NAME_LENGTH  /* maximum length of an object name */
51#if defined(RTEMS_MULTIPROCESSING)
52    ,
53    FALSE,                     /* TRUE if this is a global object class */
54    NULL                       /* Proxy extraction support callout */
55#endif
56  );
57
58  /*
59   *  Initialize the pointer to the Timer Server TCB to NULL indicating
60   *  that task-based timer support is not initialized.
61   */
62
63  _Timer_Server = NULL;
64  _Timer_Server_schedule_operation = NULL;
65}
Note: See TracBrowser for help on using the repository browser.