Issue Type: Bug Bug
Affects Versions: JRuby 1.7.2
Assignee: Unassigned
Components: Interpreter
Created: 24/Jan/13 5:55 PM
Description:

On JRuby, Thread.current is different between Fibers:

irb(main):001:0> p Thread.current; Fiber.new { p Thread.current}.resume
#<Thread:0x1ba5f3e5 run>
#<Thread:0x3445a62e run>

This is not the case on MRI:

1.9.3p327 :001 > p Thread.current; Fiber.new { p Thread.current}.resume
#<Thread:0x007f8aa306b5a0 run>
#<Thread:0x007f8aa306b5a0 run>

Project: JRuby
Priority: Major Major
Reporter: Tony Arcieri
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to