aboutsummaryrefslogtreecommitdiffstats
path: root/thread_pthread.ci
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-10 14:54:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-10 14:54:50 +0000
commit9242da9e02fb7b37e20d6178ba6c9658d6bf8f31 (patch)
treeb61cf7b45e601b9d0d891cf292c1186255f814e3 /thread_pthread.ci
parent3660ca5281a0dd77a01d75b7967387ae756aacde (diff)
downloadruby-9242da9e02fb7b37e20d6178ba6c9658d6bf8f31.tar.gz
* thread.c (thread_create_core): inherit the priority of creating
thread. submitted at [ruby-core:11873] by David Flanagan <david AT davidflanagan.com>. [ruby-core:11876] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.ci')
-rw-r--r--thread_pthread.ci1
1 files changed, 0 insertions, 1 deletions
diff --git a/thread_pthread.ci b/thread_pthread.ci
index f9498f8786..d624e98487 100644
--- a/thread_pthread.ci
+++ b/thread_pthread.ci
@@ -285,7 +285,6 @@ native_thread_apply_priority(rb_thread_t *th)
else if (max > priority) {
priority = min;
}
- th->priority = 0 - priority;
sp.sched_priority = priority;
pthread_setschedparam(th->thread_id, policy, &sp);