[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Signal handling behaviour change after ruby upgrade

Andrew Walrond

10/21/2006 12:18:00 PM

I use an init system written in ruby for my Gnu/linux distro, and it
makes heavy use of signal handling.

After upgrading (stable snapshots)
from
ruby 1.8.3 (2005-10-26)
to
ruby 1.8.5 (2006-10-18)

nothing much works any more. It seems that signals are no longer
delivered until _after_ a blocking system call returns. For example:

#!/bin/ruby -w

trap("USR1") { puts("USR1") }
fork { sleep 60 }
pid = Process::wait()


If you run this up under a recent snapshot and fire some signals at
the process with

kill -USR1 <pid>

you will get no "USR1" output until AFTER the 60seconds have elapsed and
Process::wait() returns.

The old behaviour was to handle signals immediately, with presumably
SA_RESTART (or whatever it is called) set such that the wait system call
just carries on unaffected after the signal handler has been run.


So, is the change intentional? If so, whats the rationale?

Andrew Walrond

6 Answers

Yukihiro Matsumoto

10/22/2006 7:54:00 AM

0

Hi,

In message "Re: Signal handling behaviour change after ruby upgrade"
on Sat, 21 Oct 2006 21:17:46 +0900, andrew@walrond.org writes:

|I use an init system written in ruby for my Gnu/linux distro, and it
|makes heavy use of signal handling.
|
|After upgrading (stable snapshots)
|from
| ruby 1.8.3 (2005-10-26)
|to
| ruby 1.8.5 (2006-10-18)

It was caused by a partial backport from the HEAD. The problem was
reported more than year ago in [ruby-talk:147220] by Guillaume
Marcais, but somehow I missed it. I am sorry. It will be fixed in
the snapshot soon.

matz.

Andrew Walrond

10/22/2006 8:34:00 AM

0

On Sun, Oct 22, 2006 at 04:54:21PM +0900, Yukihiro Matsumoto wrote:
>
> It was caused by a partial backport from the HEAD. The problem was
> reported more than year ago in [ruby-talk:147220] by Guillaume
> Marcais, but somehow I missed it. I am sorry. It will be fixed in
> the snapshot soon.
>
> matz.
>

Well ok, but don't let it happen again ;)

(I don't think you need make apologies; especially here!)

Andrew Walrond

David Vallner

10/23/2006 1:09:00 AM

0

Yukihiro Matsumoto wrote:
> It will be fixed in the snapshot soon.
>

Time machine batteries dead?

David Vallner
Running for the hills

Yukihiro Matsumoto

10/23/2006 5:01:00 AM

0

Hi,

In message "Re: Signal handling behaviour change after ruby upgrade"
on Mon, 23 Oct 2006 10:09:17 +0900, David Vallner <david@vallner.net> writes:

|> It will be fixed in the snapshot soon.
|
|Time machine batteries dead?

Usually I am living in the future. But I am in the States now. ;-)

matz.

M. Edward (Ed) Borasky

10/23/2006 5:15:00 AM

0

Yukihiro Matsumoto wrote:
> Hi,
>
> In message "Re: Signal handling behaviour change after ruby upgrade"
> on Mon, 23 Oct 2006 10:09:17 +0900, David Vallner <david@vallner.net> writes:
>
> |> It will be fixed in the snapshot soon.
> |
> |Time machine batteries dead?
>
> Usually I am living in the future. But I am in the States now. ;-)
>
> matz.
>
>
>
Yeah ... it's tomorrow where you live. :)

Andrew Walrond

10/30/2006 10:22:00 AM

0

On Sun, Oct 22, 2006 at 04:54:21PM +0900, Yukihiro Matsumoto wrote:
>
> It was caused by a partial backport from the HEAD. The problem was
> reported more than year ago in [ruby-talk:147220] by Guillaume
> Marcais, but somehow I missed it. I am sorry. It will be fixed in
> the snapshot soon.
>

Fixed - thanks!

Andrew Walrond