diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | thread_win32.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu Mar 29 10:16:05 2012 NAKAMURA Usaku <[email protected]> + + * thread_win32.c (TIME_QUANTUM_USEC): 10ms(= old setting) [experimental] + cf. [Bug #6098] + Thu Mar 29 10:12:12 2012 NAKAMURA Usaku <[email protected]> * thread.c (rb_threadptr_execute_interrupts_common): use defined diff --git a/thread_win32.c b/thread_win32.c index da971e70de..3fd844018e 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -13,7 +13,7 @@ #include <process.h> -#define TIME_QUANTUM_USEC (100 * 1000) +#define TIME_QUANTUM_USEC (10 * 1000) #define RB_CONDATTR_CLOCK_MONOTONIC 1 /* no effect */ #undef Sleep |