summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/posix/src/cond.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpukit/posix/src/cond.c b/cpukit/posix/src/cond.c
index de2e252b95..248f836b94 100644
--- a/cpukit/posix/src/cond.c
+++ b/cpukit/posix/src/cond.c
@@ -422,9 +422,10 @@ int _POSIX_Condition_variables_Wait_support(
if ( status && status != ETIMEDOUT )
return status;
- }
- else
+ } else {
+ _Thread_Enable_dispatch();
status = ETIMEDOUT;
+ }
/*
* When we get here the dispatch disable level is 0.