From: Gavin Andresen Date: Wed, 9 May 2012 22:24:34 +0000 (-0400) Subject: Fix 100% cpu usage on osx bug X-Git-Tag: v0.4.0-unstable~129^2~21 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=8f9123a157d0ef479f62eb3e05da2ba6613c5dfc Fix 100% cpu usage on osx bug --- diff --git a/src/util.h b/src/util.h index 5f8d037..c3a0efe 100644 --- a/src/util.h +++ b/src/util.h @@ -274,8 +274,9 @@ typedef CMutexLock CWaitableCriticalBlock; typedef boost::interprocess::interprocess_condition CConditionVariable; /** Wait for a given condition inside a WAITABLE_CRITICAL_BLOCK */ +/** Sleep(1) is to workaround a 100% cpu-usage bug on OSX **/ #define WAIT(name,condition) \ - do { while(!(condition)) { (name).wait(waitablecriticalblock.GetLock()); } } while(0) + do { while(!(condition)) { (name).wait(waitablecriticalblock.GetLock()); Sleep(1);} } while(0) /** Notify waiting threads that a condition may hold now */ #define NOTIFY(name) \