summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-16 16:57:03 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-16 16:57:03 +0000
commitb01b19905291555674f9069873b13f30848bf66f (patch)
tree11b8fba7ff3dac9098f513dcb64c01ef238c0785
parentbfce3d10d7cca1d1c52aafb9c3766acc07383b79 (diff)
* thread_pthread.c (thread_create_core): Ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog3
-rw-r--r--thread.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1bf731c159..b1e561d0f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
-Sun Nov 17 01:43:33 2013 Tanaka Akira <akr@fsij.org>
+Sun Nov 17 01:56:32 2013 Tanaka Akira <akr@fsij.org>
* thread_pthread.c (rb_thread_create_timer_thread): Show error
message instead of error number.
+ (thread_create_core): Ditto.
* cont.c (fiber_machine_stack_alloc): Ditto.
diff --git a/thread.c b/thread.c
index a8938c0acc..b7c7137840 100644
--- a/thread.c
+++ b/thread.c
@@ -652,7 +652,7 @@ thread_create_core(VALUE thval, VALUE args, VALUE (*fn)(ANYARGS))
err = native_thread_create(th);
if (err) {
th->status = THREAD_KILLED;
- rb_raise(rb_eThreadError, "can't create Thread (%d)", err);
+ rb_raise(rb_eThreadError, "can't create Thread: %s", strerror(err));
}
st_insert(th->vm->living_threads, thval, (st_data_t) th->thread_id);
return thval;