serge_balyuk (Serge Balyuk)
- Login: serge_balyuk
- Email: serge@complicated-simplicity.com
- Registered on: 05/27/2010
- Last sign in: 04/26/2011
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
05/12/2011
-
11:01 PM Ruby Bug #4612: Segmentation fault in fiber GC mark cycle
- Awesome, thank you very much!
And thanks for the explanation on fiber deallocation, now it makes much more sense to me.
05/11/2011
-
10:53 PM Ruby Bug #4612: Segmentation fault in fiber GC mark cycle
- I'd like to bring attention to the issue again. Can I get some feedback? Maybe I haven't set some important property like target version or category, but unfortunately I can't change those now, given current permissions.
04/26/2011
-
03:13 AM Ruby Bug #4612 (Closed): Segmentation fault in fiber GC mark cycle
- =begin
((|Fiber.current|)) can cause segfault on GC cycle when used in threads. Please find attached ruby sample which should help to pinpoint the problem.
The coredump shows the following backtrace:
....
#18 <signal handler ca...
05/29/2010
-
04:21 AM Ruby Bug #3351: stack overflow on super
- Hi Marc-Andre,
Yes, exactly. Very rare situation. This is the simplified version of include sequence that I observed in one specific rails/rspec use case. And with inverted includes everything works like charm.
Thanks
05/27/2010
-
03:45 PM Ruby Bug #3351 (Closed): stack overflow on super
- It looks like `super` behavior is a bit different in 1.8 and 1.9. Please find the example below:
```ruby
class Base
def foo
puts "bar"
end
end
module Override
def foo
puts "override"
super
e...