aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-13 12:34:06 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-13 12:34:06 +0000
commit60d6f88e8ed7d30f31c9e3ff5215ee5a28b3eeca (patch)
tree80b8ad4275610daa455614a0b57d0d264693d12c /NEWS
parent49f0d188f57800e97d24ccffbe5874d0958a1696 (diff)
downloadruby-60d6f88e8ed7d30f31c9e3ff5215ee5a28b3eeca.tar.gz
* thread.c (debug_deadlock_check): show thread lock dependency and
backtrace [Feature #8214] [ruby-dev:47217] * thread.c (thread_status_name): show "sleep_forever" instead of "sleep" if called from inspect. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55397 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index a8d868bdb0..673ad1577b 100644
--- a/NEWS
+++ b/NEWS
@@ -167,3 +167,5 @@ with all sufficient information, see the ChangeLog file or Redmine
be <= 0x100, and Array#max and min must not be redefined. It will work
in most casual and real-life use case where it is written with intent
to `Math.max(x, y)`.
+
+* Thread deadlock detection now shows their backtrace and dependency. [Feature #8214]