From 5a909149ca1ed7232c61625856ce7eff232930c0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 7 May 1999 17:09:20 +0000 Subject: Made all calls to _Thread_Yield_processor consistent in how they are wrapped by calls to _Thread_Enable_dispatch and _Thread_Disable_dispatch. --- c/src/exec/posix/src/time.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'c/src/exec/posix') diff --git a/c/src/exec/posix/src/time.c b/c/src/exec/posix/src/time.c index a14eb71f8e..b4367fac4c 100644 --- a/c/src/exec/posix/src/time.c +++ b/c/src/exec/posix/src/time.c @@ -314,8 +314,9 @@ int nanosleep( */ if ( !ticks ) { - _Thread_Yield_processor(); - _Thread_Dispatch(); + _Thread_Disable_dispatch(); + _Thread_Yield_processor(); + _Thread_Enable_dispatch(); if ( rmtp ) { rmtp->tv_sec = 0; rmtp->tv_nsec = 0; -- cgit v1.2.3