From 215a7a8003bd292ad6bb23e141aa187919f1e9ed Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 18 Jan 2008 14:49:43 +0000 Subject: * thread.c (thread_create_core): set thread group before creating thread. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index e45062c20..ead451ccd 100644 --- a/thread.c +++ b/thread.c @@ -302,7 +302,6 @@ thread_start_func_2(rb_thread_t *th, VALUE *stack_start, VALUE *register_stack_s #ifdef __ia64 th->machine_register_stack_start = register_stack_start; #endif - th->thgroup = th->vm->thgroup_default; thread_debug("thread start: %p\n", th); native_mutex_lock(&th->vm->global_interpreter_lock); @@ -383,6 +382,7 @@ thread_create_core(VALUE thval, VALUE args, VALUE (*fn)(ANYARGS)) th->first_func = fn; th->priority = GET_THREAD()->priority; + th->thgroup = th->vm->thgroup_default; native_mutex_initialize(&th->interrupt_lock); /* kick thread */ -- cgit