aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-15 13:30:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-15 13:30:03 +0000
commit4bf8fa83b7084040fbe12cc003f881ccf128c911 (patch)
treeaec6953af49ffc9c3bf3c405e6d67a71cb73b97c /ChangeLog
parentffd0301a35d0829e21f2510265355896497e1a9c (diff)
downloadruby-4bf8fa83b7084040fbe12cc003f881ccf128c911.tar.gz
thread.c: defer setting name in initialize
* thread.c (rb_thread_setname): defer setting native thread name set in initialize until the native thread is created. [ruby-core:74963] [Bug #12290] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 4 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 6045ee09a5..052628352e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,8 @@
-Fri Apr 15 21:12:23 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Fri Apr 15 22:30:01 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
- * thread.c (get_initialized_threadptr): extract ensuring that the
- thread is initialized.
-
- * thread.c (rb_thread_setname): thread must be initialized to set
- the name. [ruby-core:74963] [Bug #12290]
+ * thread.c (rb_thread_setname): defer setting native thread name
+ set in initialize until the native thread is created.
+ [ruby-core:74963] [Bug #12290]
Fri Apr 15 20:27:16 2016 SHIBATA Hiroshi <hsbt@ruby-lang.org>