File: Signal.pm

package info (click to toggle)
liblinux-fd-perl 0.017-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 716 kB
  • sloc: perl: 49; makefile: 8
file content (72 lines) | stat: -rw-r--r-- 2,878 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package Linux::FD::Signal;
$Linux::FD::Signal::VERSION = '0.017';
use 5.006;

use strict;
use warnings;
use Linux::FD ();

1;    # End of Linux::FD::Signal

#ABSTRACT: Signal filehandles for Linux

__END__

=pod

=encoding UTF-8

=head1 NAME

Linux::FD::Signal - Signal filehandles for Linux

=head1 VERSION

version 0.017

=head1 SYNOPSIS

 use Linux::FD::Signal;
 
 my $fh = Linux::FD::Signal->new($sigset, @flags);

=head1 DESCRIPTION

This module creates a filehandle that can be used to accept signals targetted at the caller, similar but not identical to L<Signal::Pipe|Signal::Pipe>. It provides an alternative to conventional signal handlers or C<sigwaitinfo>, with the advantage that the file descriptor may easily be monitored by mechanisms such as C<select>, C<poll>, and C<epoll>.

=head1 METHODS

=head2 new($sigmask)

The $sigmask argument specifies the set of signals that the caller wishes to accept via the file descriptor. This should either be a signal name(without the C<SIG> prefix) or a L<POSIX::SigSet|POSIX> object. Normally, the set of signals to be received via the file descriptor should be blocked to prevent the signals being handled according to their default dispositions. It is not possible to receive SIGKILL or SIGSTOP signals via a signalfd file descriptor; these signals are silently ignored if specified in $sigmask. C<@flags> is an optional list of flags, currently limited to C<'non-blocking'> (requires Linux 2.6.27).

=head2 set_mask($sigmask)

Sets the signal mask to a new value. Its argument works exactly the same as C<new>'s

=head2 receive()

If one or more of the signals specified in mask is pending for the process, then it returns the information of one signalfd_siginfo structures (see below) that describe the signals.

As a consequence of the receive, the signals are consumed, so that they are no longer pending for the process (i.e., will not be caught by signal handlers, and cannot be accepted using sigwaitinfo).

If none of the signals in mask is pending for the process, then the receive either blocks until one of the signals in mask is generated for the process, or fails with the error C<EAGAIN> if the file descriptor has been made non-blocking.

The information is returned as a hashref with the following keys: C<signo>, C<errno>, C<code>, C<pid>, C<uid>, C<fd>, C<tid>, C<band>, C<overrun>, C<trapno>, C<status>, C<int>, C<ptr>, C<utime>, C<stime>, C<address>. All of these are returned as integers. Some of them are only useful in certain circumstances, others may not be useful from perl at all.

=head1 SEE ALSO

L<Signal::Mask>

=head1 AUTHOR

Leon Timmermans <leont@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Leon Timmermans.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut