summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems/src/rtemstimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/rtems/src/rtemstimer.c')
-rw-r--r--c/src/exec/rtems/src/rtemstimer.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/c/src/exec/rtems/src/rtemstimer.c b/c/src/exec/rtems/src/rtemstimer.c
index e413681549..6954f1dec6 100644
--- a/c/src/exec/rtems/src/rtemstimer.c
+++ b/c/src/exec/rtems/src/rtemstimer.c
@@ -2,7 +2,7 @@
* Timer Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2002.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -47,4 +47,11 @@ void _Timer_Manager_initialization(
RTEMS_MAXIMUM_NAME_LENGTH,
FALSE
);
+
+ /*
+ * Initialize the pointer to the Timer Server TCB to NULL indicating
+ * that task-based timer support is not initialized.
+ */
+
+ _Timer_Server = NULL;
}