From fea7a74ee3b0b1920a956ca3cc7faaf60b216c35 Mon Sep 17 00:00:00 2001 From: usa Date: Thu, 29 Mar 2012 01:15:37 +0000 Subject: [PATCH] * thread.c (rb_threadptr_execute_interrupts_common): use defined TIME_QUANTUM_USEC instead of a magic number. there is no meanings to use different values for checking interval of interruption and thread switching limits. cf. [Bug #6098] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35163 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ thread.c | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7a33e7a23e..7463660f63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Thu Mar 29 10:12:12 2012 NAKAMURA Usaku + + * thread.c (rb_threadptr_execute_interrupts_common): use defined + TIME_QUANTUM_USEC instead of a magic number. there is no meanings + to use different values for checking interval of interruption and + thread switching limits. + cf. [Bug #6098] + Thu Mar 29 09:26:17 2012 Martin Bosslet * test/openssl/test_x509cert.rb: Exclude test that fails when issuing diff --git a/thread.c b/thread.c index 55ba49d62b..1fcdf824f9 100644 --- a/thread.c +++ b/thread.c @@ -1312,7 +1312,7 @@ rb_threadptr_execute_interrupts_common(rb_thread_t *th) } if (timer_interrupt) { - unsigned long limits_us = 250 * 1000; + unsigned long limits_us = TIME_QUANTUM_USEC; if (th->priority > 0) limits_us <<= th->priority;