summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/rtemstimer.c
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-11-30 09:08:35 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-11-30 09:08:35 +0000
commit6e51c4c9f7212bd696ee7aa777c9ca4ac1ad6d3b (patch)
tree0260716bb7c1fc8b80e018924678a0b74a7b42bf /cpukit/rtems/src/rtemstimer.c
parentRegenerate. (diff)
downloadrtems-6e51c4c9f7212bd696ee7aa777c9ca4ac1ad6d3b.tar.bz2
Added timer server control block
Removed _Timer_Server thread pointer Added _Timer_server pointer to the default timer server control block Rework of the timer server implementation.
Diffstat (limited to 'cpukit/rtems/src/rtemstimer.c')
-rw-r--r--cpukit/rtems/src/rtemstimer.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpukit/rtems/src/rtemstimer.c b/cpukit/rtems/src/rtemstimer.c
index 5aeb2fdab2..3cff1f3bf7 100644
--- a/cpukit/rtems/src/rtemstimer.c
+++ b/cpukit/rtems/src/rtemstimer.c
@@ -56,10 +56,9 @@ void _Timer_Manager_initialization(void)
);
/*
- * Initialize the pointer to the Timer Server TCB to NULL indicating
- * that task-based timer support is not initialized.
+ * Initialize the pointer to the default timer server control block to NULL
+ * indicating that task-based timer support is not initialized.
*/
- _Timer_Server = NULL;
- _Timer_Server_schedule_operation = NULL;
+ _Timer_server = NULL;
}