summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 07:53:35 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 07:53:35 +0000
commit16612b360b376d0cb3f50f966e2e671cf80fdc25 (patch)
tree862a67a25748334d49fedad72e9a848376b22837 /thread.c
parent81719aff65dba5b72d14ad39eb851301bfd995a3 (diff)
* thread.c, vm_core.h: add manual priority support
using time slice. if you enable USE_NATIVE_THREAD_PRIORITY macro, this mechanism is ignored. [ruby-dev:33124] * thread_pthread.c, thread_win32.c: ditto. * test/ruby/test_thread.rb: fix test parameter. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c39
1 files changed, 38 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index ffa3fce476..20cb6b931f 100644
--- a/thread.c
+++ b/thread.c
@@ -48,6 +48,12 @@
#include "vm.h"
#include "gc.h"
+#ifndef USE_NATIVE_THREAD_PRIORITY
+#define USE_NATIVE_THREAD_PRIORITY 0
+#define RUBY_THREAD_PRIORITY_MAX 3
+#define RUBY_THREAD_PRIORITY_MIN -3
+#endif
+
#ifndef THREAD_DEBUG
#define THREAD_DEBUG 0
#endif
@@ -996,8 +1002,26 @@ 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++;
+ goto reschedule;
+ }
+ else {
+ th->slice = th->priority;
+ }
+ }
+#endif
}
}
}
@@ -1847,12 +1871,25 @@ rb_thread_priority_set(VALUE thread, VALUE prio)
{
rb_thread_t *th;
GetThreadPtr(thread, th);
+ int priority;
rb_secure(4);
+#if USE_NATIVE_THREAD_PRIORITY
th->priority = NUM2INT(prio);
native_thread_apply_priority(th);
- return prio;
+#else
+ priority = NUM2INT(prio);
+ if (priority > RUBY_THREAD_PRIORITY_MAX) {
+ priority = RUBY_THREAD_PRIORITY_MAX;
+ }
+ else if (priority < RUBY_THREAD_PRIORITY_MIN) {
+ priority = RUBY_THREAD_PRIORITY_MIN;
+ }
+ th->priority = priority;
+ th->slice = priority;
+#endif
+ return INT2NUM(th->priority);
}
/* for IO */