ActionsLike0
Bug #727
closedSignal(CLD) seems not to work on OS X
Description
=begin
I've noticed differences in the handling of SIGCLD in 1.9. For example, the following code:
Signal.trap("CLD") { puts "Child died" }
fork && Process.wait
now reports
t.rb:2:in `wait': Interrupted system call (Errno::EINTR)
from t.rb:2:in `<main>'
With 1.8, it just says "Child died" (which is what I'd expect)
=end
Updated by yugui (Yuki Sonoda) over 16 years ago
- Status changed from Open to Assigned
- Assignee changed from nobu (Nobuyoshi Nakada) to yugui (Yuki Sonoda)
- Priority changed from 5 to 6
- Target version set to 1.9.1 Release Candidate
Updated by yugui (Yuki Sonoda) over 16 years ago
- Due date changed from 12/24/2008 to 01/20/2009
- Priority changed from 6 to Normal
- Target version changed from 1.9.1 Release Candidate to 1.9.1 RC2
Updated by yugui (Yuki Sonoda) over 16 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
ActionsLike0