diff options
Diffstat (limited to 'src/include/mutex.i')
-rw-r--r-- | src/include/mutex.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/mutex.i b/src/include/mutex.i index 843c4ad9350..7eb042dd79f 100644 --- a/src/include/mutex.i +++ b/src/include/mutex.i @@ -18,7 +18,7 @@ /* Default to spinning 1000 times before yielding. */ #ifndef WT_SPIN_COUNT -#define WT_SPIN_COUNT 1000 +#define WT_SPIN_COUNT WT_THOUSAND #endif /* @@ -300,7 +300,7 @@ __wt_fair_lock(WT_SESSION_IMPL *session, WT_FAIR_LOCK *lock) * situation happens if there are more threads than cores in the * system and we're thrashing on shared resources. */ - if (++pause_cnt < 1000) + if (++pause_cnt < WT_THOUSAND) WT_PAUSE(); else __wt_sleep(0, 10); |