loganb (Logan Bowers)
- Login: loganb
- Email: logan@datacurrent.com
- Registered on: 03/06/2012
- Last sign in: 11/24/2012
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/06/2012
-
04:18 PM Ruby Bug #6117 (Closed): Transfers allowed into Fibers that have resumed into other fibers
- Consider the following code:
```ruby
require 'fiber'
def foo
order = []
main_fiber = Fiber.current
a = Fiber.new do
order << 2
x = Fiber.new do
order << 4
main_fiber.transfer
...