From e407f42fb8e99b3e1f6b0f360452b3f8128ae976 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 12 Nov 2009 04:57:39 +0000 Subject: * thread.c (thread_create_core): moved failure handling from native_thread_core(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'thread_pthread.c') diff --git a/thread_pthread.c b/thread_pthread.c index 22db6d9f8..076fc2aaf 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -509,11 +509,6 @@ native_thread_create(rb_thread_t *th) if (!err) { pthread_cond_init(&th->native_thread_data.sleep_cond, 0); } - else { - st_delete_wrap(th->vm->living_threads, th->self); - th->status = THREAD_KILLED; - rb_raise(rb_eThreadError, "can't create Thread (%d)", err); - } } return err; } -- cgit