aboutsummaryrefslogtreecommitdiffstats
path: root/thread_win32.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-16 14:27:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-16 14:27:21 +0000
commit182599a7a719b4ba7426633f6b17b3c27c40b28a (patch)
tree7ba1e5ac49522669226e6624157277f133fc0566 /thread_win32.c
parent91e4f9df4add2e8729b51b7dc810032e90724f4f (diff)
downloadruby-182599a7a719b4ba7426633f6b17b3c27c40b28a.tar.gz
thread_win32.c: no GVL for interrupt_event
* thread_win32.c (w32_wait_events): do not acquire GVL, to fix deadlock at read/close race condition. instead, just ignore interrupt_event if it is closed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_win32.c')
-rw-r--r--thread_win32.c32
1 files changed, 7 insertions, 25 deletions
diff --git a/thread_win32.c b/thread_win32.c
index 01d58a26d8..3edb998695 100644
--- a/thread_win32.c
+++ b/thread_win32.c
@@ -158,22 +158,6 @@ Init_native_thread(void)
th->native_thread_data.interrupt_event);
}
-static void
-w32_set_event(HANDLE handle)
-{
- if (SetEvent(handle) == 0) {
- w32_error("w32_set_event");
- }
-}
-
-static void
-w32_reset_event(HANDLE handle)
-{
- if (ResetEvent(handle) == 0) {
- w32_error("w32_reset_event");
- }
-}
-
static int
w32_wait_events(HANDLE *events, int count, DWORD timeout, rb_thread_t *th)
{
@@ -184,20 +168,16 @@ w32_wait_events(HANDLE *events, int count, DWORD timeout, rb_thread_t *th)
thread_debug(" w32_wait_events events:%p, count:%d, timeout:%ld, th:%p\n",
events, count, timeout, th);
if (th && (intr = th->native_thread_data.interrupt_event)) {
- gvl_acquire(th->vm, th);
- if (intr == th->native_thread_data.interrupt_event) {
- w32_reset_event(intr);
- if (RUBY_VM_INTERRUPTED(th)) {
- w32_set_event(intr);
- }
-
+ if (ResetEvent(intr) && (!RUBY_VM_INTERRUPTED(th) || SetEvent(intr))) {
targets = ALLOCA_N(HANDLE, count + 1);
memcpy(targets, events, sizeof(HANDLE) * count);
targets[count++] = intr;
thread_debug(" * handle: %p (count: %d, intr)\n", intr, count);
}
- gvl_release(th->vm);
+ else if (intr == th->native_thread_data.interrupt_event) {
+ w32_error("w32_wait_events");
+ }
}
thread_debug(" WaitForMultipleObjects start (count: %d)\n", count);
@@ -682,7 +662,9 @@ ubf_handle(void *ptr)
rb_thread_t *th = (rb_thread_t *)ptr;
thread_debug("ubf_handle: %p\n", th);
- w32_set_event(th->native_thread_data.interrupt_event);
+ if (!SetEvent(th->native_thread_data.interrupt_event)) {
+ w32_error("ubf_handle");
+ }
}
static struct {