summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 21:26:49 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 21:26:49 +0000
commitabfd87c2305a0a07bd5958be2282fcc2fa10a639 (patch)
treee6daf37b950e1a7e7f5dcf04c59b5ca028955004 /thread.c
parent7085729de323a2c1570e9ba62a8bb4fa2de8704d (diff)
* thread.c (rb_thread_execute_interrupts): switch event
should be occur only once. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/thread.c b/thread.c
index e30e4e33d7..5032f773ef 100644
--- a/thread.c
+++ b/thread.c
@@ -1015,16 +1015,13 @@ rb_thread_execute_interrupts(rb_thread_t *th)
}
if (timer_interrupt) {
-#if USE_NATIVE_THREAD_PRIORITY
EXEC_EVENT_HOOK(th, RUBY_EVENT_SWITCH, th->cfp->self, 0, 0);
- rb_thread_schedule();
-#else
+
if (th->slice > 0) {
th->slice--;
}
else {
reschedule:
- EXEC_EVENT_HOOK(th, RUBY_EVENT_SWITCH, th->cfp->self, 0, 0);
rb_thread_schedule();
if (th->slice < 0) {
th->slice++;
@@ -1034,7 +1031,6 @@ rb_thread_execute_interrupts(rb_thread_t *th)
th->slice = th->priority;
}
}
-#endif
}
}
}