aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--thread_win32.c10
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 15bb64685e..833e367c43 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jun 12 22:19:45 2008 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * thread_win32.c (native_sleep): fixed previous commit.
+
Thu Jun 12 21:59:17 2008 Yusuke Endoh <mame@tsg.ne.jp>
* thread.c, vm_core.h, vm.c, thread_pthread.c, thread_win32.c: add
diff --git a/thread_win32.c b/thread_win32.c
index 06e7892036..2e05524ab2 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -147,7 +147,7 @@ rb_w32_wait_events(HANDLE *events, int num, DWORD timeout)
int ret;
BLOCKING_REGION(ret = rb_w32_wait_events_blocking(events, num, timeout),
- ubf_handle, GET_THREAD());
+ ubf_handle, GET_THREAD(), 1);
return ret;
}
@@ -199,14 +199,16 @@ rb_w32_Sleep(unsigned long msec)
int ret;
BLOCKING_REGION(ret = rb_w32_sleep(msec),
- ubf_handle, GET_THREAD());
+ ubf_handle, GET_THREAD(), 1);
return ret;
}
static void
native_sleep(rb_thread_t *th, struct timeval *tv, int deadlockable)
{
+ int prev_status = th->status;
DWORD msec;
+
if (tv) {
msec = tv->tv_sec * 1000 + tv->tv_usec / 1000;
}
@@ -222,10 +224,10 @@ native_sleep(rb_thread_t *th, struct timeval *tv, int deadlockable)
else {
th->status = THREAD_STOPPED;
}
+
GVL_UNLOCK_BEGIN();
{
DWORD ret;
- int status = th->status;
th->unblock.func = ubf_handle;
th->unblock.arg = th;
@@ -243,7 +245,7 @@ native_sleep(rb_thread_t *th, struct timeval *tv, int deadlockable)
th->unblock.arg = 0;
}
GVL_UNLOCK_END();
- th->status = status;
+ th->status = prev_status;
if (!tv && deadlockable) th->vm->sleeper++;
RUBY_VM_CHECK_INTS();
}