aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-26 14:55:56 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-26 14:55:56 +0000
commit23d5c282b4df78b5f6b8684c0d9f5aece7dd3f70 (patch)
tree15416d1f526180e0ff1b3d5143b2f80aa858f848
parent39d38ff82f3a6158d2adc5883b86691a424ed1c0 (diff)
downloadruby-23d5c282b4df78b5f6b8684c0d9f5aece7dd3f70.tar.gz
* NEWS: update for Thread#join incompatible change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--NEWS7
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index badb9877da..e89f99aeec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Nov 26 23:55:33 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * NEWS: update for Thread#join incompatible change.
+
Mon Nov 26 22:44:24 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* thread.c (rb_thread_terminate_all): use native_sleep() instead
diff --git a/NEWS b/NEWS
index ac994b0b4c..61ab041883 100644
--- a/NEWS
+++ b/NEWS
@@ -151,6 +151,9 @@ with all sufficient information, see the ChangeLog file.
variable has been set.
* added Thread#backtrace_locations which returns similar information of
Kernel#caller_locations.
+ * incompatible changes:
+ * Thread#join no longer allows to be used from trap handler. Now it raises
+ ThreadError.
* Time
* change return value:
@@ -343,3 +346,7 @@ with all sufficient information, see the ChangeLog file.
* OpenStruct new methods can conflict with custom attributes named
"each_pair", "eql?", "hash" or "to_h".
+
+ * Thread#join
+
+ See above.