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 --- ChangeLog | 5 ++++- thread.c | 8 +++++++- thread_pthread.c | 5 ----- thread_win32.c | 3 +-- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index b34dfdef7..0b7127a4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ -Thu Nov 12 13:31:00 2009 Nobuyoshi Nakada +Thu Nov 12 13:57:37 2009 Nobuyoshi Nakada + + * thread.c (thread_create_core): moved failure handling from + native_thread_core(). * thread_pthread.c (native_thread_create): constified. diff --git a/thread.c b/thread.c index 11d3ed633..5bca3e32a 100644 --- a/thread.c +++ b/thread.c @@ -512,6 +512,7 @@ static VALUE thread_create_core(VALUE thval, VALUE args, VALUE (*fn)(ANYARGS)) { rb_thread_t *th; + int err; if (OBJ_FROZEN(GET_THREAD()->thgroup)) { rb_raise(rb_eThreadError, @@ -530,7 +531,12 @@ thread_create_core(VALUE thval, VALUE args, VALUE (*fn)(ANYARGS)) native_mutex_initialize(&th->interrupt_lock); /* kick thread */ st_insert(th->vm->living_threads, thval, (st_data_t) th->thread_id); - native_thread_create(th); + err = native_thread_create(th); + if (err) { + st_delete_wrap(th->vm->living_threads, th->self); + th->status = THREAD_KILLED; + rb_raise(rb_eThreadError, "can't create Thread (%d)", err); + } return thval; } 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; } diff --git a/thread_win32.c b/thread_win32.c index 139b94a94..2baa60642 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -479,8 +479,7 @@ native_thread_create(rb_thread_t *th) th->thread_id = w32_create_thread(stack_size, thread_start_func_1, th); if ((th->thread_id) == 0) { - st_delete_wrap(th->vm->living_threads, th->self); - rb_raise(rb_eThreadError, "can't create Thread (%d)", errno); + return errno ? errno : -1; } w32_resume_thread(th->thread_id); -- cgit