aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-29 01:17:39 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-29 01:17:39 +0000
commit8e601a20f4a41bc1016c3c0a45fd9cbd1840e158 (patch)
tree6d9ce6076bbacdc0f3680e60b419d3eb01dc1b0c /thread_win32.c
parentfea7a74ee3b0b1920a956ca3cc7faaf60b216c35 (diff)
downloadruby-8e601a20f4a41bc1016c3c0a45fd9cbd1840e158.tar.gz
* 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
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c2
1 files changed, 1 insertions, 1 deletions
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