summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-22 04:06:46 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-22 04:06:46 +0000
commit0ac0f20c1f593ff77744ec5d9b2e2a5e685c28b8 (patch)
tree95dcc4dd1cf962fcaa376a4416c24375be05e28a /win32
parent56f96021684f7a201b0b8004b30b6bedc7be36da (diff)
* win32/win32.c (rb_w32_call_handler): workaround for Ctrl-C.
merge from HEAD. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6947 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 50753fcf9a..86a791da08 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -2879,7 +2879,7 @@ static void rb_w32_call_handler(struct handler_arg_t* h)
rb_jump_tag(status);
}
h->finished = 1;
- Sleep(INFINITE); /* safe on Win95? */
+ yield_until(0);
}
static struct handler_arg_t* setup_handler(struct handler_arg_t *harg,