summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-02 13:15:29 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-02 13:15:29 +0000
commitc03d1c273622c2a6de263f246bd5718eec08fb1f (patch)
treecf38ab9e7ef35b1ce5ea7d850e2e5e3512e8ed88 /thread.c
parent83eceb2a79188a54871b354d95f2e1fe352305b0 (diff)
* thread.c (rb_thread_aref): add explanation for why Thread#[] and
Thread#[]= are fiber-local and not thread-local. reported by Julien A. [ruby-core:41606] [ruby-trunk - Bug #5750] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36269 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/thread.c b/thread.c
index 279dc81aea..5c1eabb223 100644
--- a/thread.c
+++ b/thread.c
@@ -2078,6 +2078,39 @@ rb_thread_local_aref(VALUE thread, ID id)
* #<Thread:0x00000002a54220 dead>: A
* #<Thread:0x00000002a541a8 dead>: B
* #<Thread:0x00000002a54130 dead>: C
+ *
+ * Thread#[] and Thread#[]= are not thread-local but fiber-local.
+ * This confusion was not exist until Ruby 1.8 because
+ * fiber is available since Ruby 1.9.
+ * Ruby 1.9 chooses that the methods behaves fiber-local to save
+ * following idiom for dynamic scope.
+ *
+ * def meth(newvalue)
+ * begin
+ * oldvalue = Thread.current[:name]
+ * Thread.current[:name] = newvalue
+ * yield
+ * ensure
+ * Thread.current[:name] = oldvalue
+ * end
+ * end
+ *
+ * The idiom may not work as dynamic scope if the methods are thread-local
+ * and a given block switches fiber.
+ *
+ * f = Fiber.new {
+ * meth(1) {
+ * Fiber.yield
+ * }
+ * }
+ * meth(2) {
+ * f.resume
+ * }
+ * f.resume
+ * p Thread.current[:name]
+ * #=> nil if fiber-local
+ * #=> 2 if thread-local (The value 2 is leaked to outside of meth method.)
+ *
*/
static VALUE