llancet has asked for the wisdom of the Perl Monks concerning the following question:
send him a min+5#!/usr/bin/perl use common::sense; use Glib qw/TRUE FALSE/; $SIG{'SIGRTMIN+5'} = \&on_sig; my $loop = Glib::MainLoop->new( 'default', FALSE ); $loop->run; sub on_sig { my $sig = shift; say "somebody told me $sig"; }
Why?$ ./t_signal.pl & [2] 3305 $ kill -s SIGRTMIN+5 3305 $ [2]+ Real-time signal 5 ./t_signal.pl $
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Unix real time signals
by zwon (Abbot) on Oct 16, 2010 at 09:32 UTC | |
|
Re: Unix real time signals
by lidden (Curate) on Oct 16, 2010 at 03:15 UTC | |
by samtregar (Abbot) on Oct 16, 2010 at 03:26 UTC | |
by llancet (Friar) on Oct 16, 2010 at 06:13 UTC |