From 03b900d3ed120ea919ea3eded7edbece3488cff3 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 18 Feb 2016 08:36:26 +0100 Subject: score: Replace watchdog handler implementation Use a red-black tree instead of delta chains. Close #2344. Update #2554. Update #2555. Close #2606. --- cpukit/score/src/condition.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/src/condition.c') diff --git a/cpukit/score/src/condition.c b/cpukit/score/src/condition.c index 22c2a9b97c..420681955a 100644 --- a/cpukit/score/src/condition.c +++ b/cpukit/score/src/condition.c @@ -282,7 +282,7 @@ static int _Condition_Wake( struct _Condition_Control *_condition, int count ) next = _Chain_Next( node ); thread = THREAD_CHAIN_NODE_TO_THREAD( node ); - _Watchdog_Remove_ticks( &thread->Timer ); + _Thread_Timer_remove( thread ); _Thread_Unblock( thread ); node = next; -- cgit v1.2.3