diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-10 14:54:50 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-10 14:54:50 +0000 |
| commit | e2936c16766e85cc9c61514e02917399afff6f5d (patch) | |
| tree | b61cf7b45e601b9d0d891cf292c1186255f814e3 /thread.c | |
| parent | 7e693135877069595b6ce706e638e4b25de76da5 (diff) | |
| download | ruby-e2936c16766e85cc9c61514e02917399afff6f5d.tar.gz ruby-e2936c16766e85cc9c61514e02917399afff6f5d.tar.xz ruby-e2936c16766e85cc9c61514e02917399afff6f5d.zip | |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@12915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
| -rw-r--r-- | thread.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -367,6 +367,8 @@ thread_create_core(VALUE klass, VALUE args, VALUE (*fn)(ANYARGS), void *arg) th->first_func = fn; th->first_func_arg = arg; + th->priority = GET_THREAD()->priority; + native_mutex_initialize(&th->interrupt_lock); /* kick thread */ st_insert(th->vm->living_threads, thval, (st_data_t) th->thread_id); |
