summaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 04:16:06 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 04:16:06 +0000
commit10575a7ee241c9986822d9cf3e048964b4c8f5ad (patch)
tree586fd664680dab1af107c4867000d4280ff054e7 /cont.c
parent6fdb6ee1eb644e9b5986f2f532b7016312d3fbde (diff)
downloadruby-10575a7ee241c9986822d9cf3e048964b4c8f5ad.tar.gz
ruby-10575a7ee241c9986822d9cf3e048964b4c8f5ad.tar.xz
ruby-10575a7ee241c9986822d9cf3e048964b4c8f5ad.zip
* vm_core.h, thread.c, cont.c: add RUBY_VM_SET_INTERRUPT(),
RUBY_VM_SET_TIMER_INTERRUPT(), RUBY_VM_INTERRUPTED(). * thread.c, thread_pthread.c, thread_win32.c: fix to ignore time slice event until sleep. * bootstraptest/test_thread.rb: add a test for time limited join test. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14654 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cont.c b/cont.c
index c153e5fc5..43b0ea77f 100644
--- a/cont.c
+++ b/cont.c
@@ -610,7 +610,7 @@ rb_fiber_start(void)
th->thrown_errinfo =
vm_make_jump_tag_but_local_jump(state, th->errinfo);
}
- th->interrupt_flag = 1;
+ RUBY_VM_SET_INTERRUPT(th);
}
rb_fiber_terminate(cont);