summaryrefslogtreecommitdiff
path: root/cpukit/score/src/condition.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/condition.c')
-rw-r--r--cpukit/score/src/condition.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/condition.c b/cpukit/score/src/condition.c
index c388d9482d..691115db79 100644
--- a/cpukit/score/src/condition.c
+++ b/cpukit/score/src/condition.c
@@ -141,7 +141,7 @@ int _Condition_Wait_timed(
_Thread_queue_Context_initialize( &queue_context );
_ISR_lock_ISR_disable( &queue_context.Lock_context );
- switch ( _TOD_Absolute_timeout_to_ticks( abstime, &ticks ) ) {
+ switch ( _TOD_Absolute_timeout_to_ticks( abstime, CLOCK_REALTIME, &ticks ) ) {
case TOD_ABSOLUTE_TIMEOUT_INVALID:
_ISR_lock_ISR_enable( &queue_context.Lock_context );
return EINVAL;
@@ -204,7 +204,7 @@ int _Condition_Wait_recursive_timed(
_Thread_queue_Context_initialize( &queue_context );
_ISR_lock_ISR_disable( &queue_context.Lock_context );
- switch ( _TOD_Absolute_timeout_to_ticks( abstime, &ticks ) ) {
+ switch ( _TOD_Absolute_timeout_to_ticks( abstime, CLOCK_REALTIME, &ticks ) ) {
case TOD_ABSOLUTE_TIMEOUT_INVALID:
_ISR_lock_ISR_enable( &queue_context.Lock_context );
return EINVAL;