1Signal::Mask(3) User Contributed Perl Documentation Signal::Mask(3)
2
3
4
6 Signal::Mask - Signal masks made easy
7
9 version 0.008
10
12 use Signal::Mask;
13
14 {
15 local $Signal::Mask{INT} = 1;
16 do_something();
17 }
18 #signal delivery gets postponed until now
19
21 Signal::Mask is an abstraction around your process or thread signal
22 mask. It is used to fetch and/or change the signal mask of the calling
23 process or thread. The signal mask is the set of signals whose delivery
24 is currently blocked for the caller. It is available as the global hash
25 %Signal::Mask.
26
28 Leon Timmermans <fawaka@gmail.com>
29
31 This software is copyright (c) 2010 by Leon Timmermans.
32
33 This is free software; you can redistribute it and/or modify it under
34 the same terms as the Perl 5 programming language system itself.
35
36
37
38perl v5.32.1 2021-01-27 Signal::Mask(3)