X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=ext%2FPOSIX%2FPOSIX.pod;h=7263d0a62a090af23befb0133824b3d772ec23a1;hb=8565c31a574ba4f7dc8cd69b66988949074e120d;hp=bb3ee3af09bd3e8569518b078a4970e47c77b8c2;hpb=a0604b4cdf35e86e96dd5002c652cb32430e1735;p=p5sagit%2Fp5-mst-13.2.git diff --git a/ext/POSIX/POSIX.pod b/ext/POSIX/POSIX.pod index bb3ee3a..7263d0a 100644 --- a/ext/POSIX/POSIX.pod +++ b/ext/POSIX/POSIX.pod @@ -1732,13 +1732,13 @@ Setting the %SIGRT elements is equivalent to calling this: sub new { my ($rtsig, $handler, $flags) = @_; - my $sigset = POSIX:SigSet($rtsig); + my $sigset = POSIX::SigSet($rtsig); my $sigact = POSIX::SigAction->new($handler, $sigset, $flags); sigaction($rtsig, $sigact); } The flags default to zero, if you want something different you can -either use C on $POSIX::RtSig::SIGACTION_FLAGS, or you can +either use C on $POSIX::SigRt::SIGACTION_FLAGS, or you can derive from POSIX::SigRt and define your own C (the tied hash STORE method of the %SIGRT calls C, where the $rtsig ranges from zero to SIGRTMAX - SIGRTMIN + 1).