katsu (Katsuhiro Ueno)
- Login: katsu
- Registered on: 11/08/2022
- Last sign in: 02/27/2024
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/08/2022
-
03:29 AM Ruby Bug #19110 (Closed): Thread#pending_interrupt? with an argument does not work
- The following code causes segmentation fault.
```ruby
t = Thread.handle_interrupt(Exception => :never) { Thread.new { Thread.stop } }
t.raise(Exception)
p t.pending_interrupt?(Exception) # => SEGV
```
Perhaps this is due to a w...