This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fixes for pod noises
[perl5.git] / ext / Thread / Thread / Signal.pm
CommitLineData
3aeed370
MB
1package Thread::Signal;
2use Thread qw(async);
3
4=head1 NAME
5
6Thread::Signal - Start a thread which runs signal handlers reliably
7
8=head1 SYNOPSIS
9
10 use Thread::Signal;
11
12 $SIG{HUP} = \&some_handler;
13
14=head1 DESCRIPTION
15
16The C<Thread::Signal> module starts up a special signal handler thread.
17All signals to the process are delivered to it and it runs the
18associated C<$SIG{FOO}> handlers for them. Without this module,
19signals arriving at inopportune moments (such as when perl's internals
20are in the middle of updating critical structures) cause the perl
21code of the handler to be run unsafely which can cause memory corruption
22or worse.
23
24=head1 BUGS
25
26This module changes the semantics of signal handling slightly in that
27the signal handler is run separately from the main thread (and in
28parallel with it). This means that tricks such as calling C<die> from
29a signal handler behave differently (and, in particular, can't be
30used to exit directly from a system call).
31
32=cut
33
34if (!init_thread_signals()) {
35 require Carp;
36 Carp::croak("init_thread_signals failed: $!");
37}
38
39async {
40 my $sig;
41 while ($sig = await_signal()) {
42 &$sig();
43 }
44};
45
46END {
47 kill_sighandler_thread();
48}
49
501;