in reply to Re^2: Why this daemon can only receive the HUP signal no more than one time?
in thread Why this daemon can only receive the HUP signal no more than one time?
to:$SIG{HUP} = \&doSigHup;
use POSIX (); $sigset=POSIX::SigSet->new(); $action=POSIX::SigAction->new('doSigHup',$sigset,&POSIX::SA_NODEFER); POSIX::sigaction(&POSIX::SIGHUP, $action);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Why this daemon can only receive the HUP signal no more than one time?
by Anonymous Monk on Apr 05, 2017 at 17:38 UTC |