summaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-16 04:07:31 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-16 04:07:31 +0000
commitc7c3af635461f12ece031f1efca0edfd75f3ec61 (patch)
tree9fa36bf05d6b89fc48c3f3abae6610932b384a42 /thread.c
parente6c0123a599aaf1b591a95c63b620caa659bc13c (diff)
downloadruby-c7c3af635461f12ece031f1efca0edfd75f3ec61.tar.gz
ruby-c7c3af635461f12ece031f1efca0edfd75f3ec61.tar.xz
ruby-c7c3af635461f12ece031f1efca0edfd75f3ec61.zip
merges r21592 from trunk into ruby_1_9_1.
* thread.c (thread_start_func_2): call ruby_cleanup() if thread is main thread. [ruby-dev:37624] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 6459ba7a0..7acf191ff 100644
--- a/thread.c
+++ b/thread.c
@@ -463,7 +463,7 @@ thread_start_func_2(rb_thread_t *th, VALUE *stack_start, VALUE *register_stack_s
}
thread_cleanup_func(th);
if (th->vm->main_thread == th) {
- rb_thread_stop_timer_thread();
+ ruby_cleanup(state);
}
native_mutex_unlock(&th->vm->global_vm_lock);