aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-06 17:50:23 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-06 17:50:23 +0000
commit604a1e2e22b1e8a841a6d3f6d0c870eb504306f3 (patch)
tree22ef2c79b5248ce92841ff30601a0a3172a37a3e /thread_win32.c
parentb2ea836ae705cc690d1230476e6eb97e92e7ef52 (diff)
downloadruby-604a1e2e22b1e8a841a6d3f6d0c870eb504306f3.tar.gz
fix win32 compile error.
* thread_win32.c (RB_CONDATTR_CLOCK_MONOTONIC): define RB_CONDATTR_CLOCK_MONOTONIC always. * thread_pthread.c (RB_CONDATTR_CLOCK_MONOTONIC): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31455 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/thread_win32.c b/thread_win32.c
index 62f78fd850..0288e772a1 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -14,6 +14,8 @@
#include <process.h>
#define WIN32_WAIT_TIMEOUT 10 /* 10 ms */
+#define RB_CONDATTR_CLOCK_MONOTONIC 1 /* no effect */
+
#undef Sleep
#define native_thread_yield() Sleep(0)