From d14418b6cb9a622790520360d99842cf9557ecf7 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 6 Oct 1997 21:28:18 +0000 Subject: Added _Thread_Enable_dispatch to already_timedout path on Wait_support. --- cpukit/posix/src/cond.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpukit') 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. -- cgit v1.2.3