From 122476479a31b8d708cd400760d64364727833a4 Mon Sep 17 00:00:00 2001 From: usa Date: Thu, 18 Jun 2015 14:39:21 +0000 Subject: * thread.c (rb_thread_safe_level): fix document. $SAFE=3 is obsolete. [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ thread.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 26c51687e6..f5b71a2760 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 18 23:38:07 2015 NAKAMURA Usaku + + * thread.c (rb_thread_safe_level): fix document. $SAFE=3 is obsolete. + [ci skip] + Thu Jun 18 23:25:51 2015 Nobuyoshi Nakada * ext/extmk.rb: configure intersection of with-ext and not diff --git a/thread.c b/thread.c index 8e8d8fbdfe..f80fcf6bf4 100644 --- a/thread.c +++ b/thread.c @@ -2701,9 +2701,9 @@ rb_thread_stop_p(VALUE thread) * Returns the safe level in effect for thr. Setting thread-local safe * levels can help when implementing sandboxes which run insecure code. * - * thr = Thread.new { $SAFE = 3; sleep } + * thr = Thread.new { $SAFE = 1; sleep } * Thread.current.safe_level #=> 0 - * thr.safe_level #=> 3 + * thr.safe_level #=> 1 */ static VALUE -- cgit v1.2.3