diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-03-29 01:17:39 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-03-29 01:17:39 +0000 |
commit | 8e601a20f4a41bc1016c3c0a45fd9cbd1840e158 (patch) | |
tree | 6d9ce6076bbacdc0f3680e60b419d3eb01dc1b0c | |
parent | fea7a74ee3b0b1920a956ca3cc7faaf60b216c35 (diff) |
* thread_win32.c (TIME_QUANTUM_USEC): 10ms(= old setting) [experimental]
cf. [Bug #6098]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35164 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 |