-
Notifications
You must be signed in to change notification settings - Fork 0
/
Thread.pm
62 lines (34 loc) · 1.29 KB
/
Thread.pm
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
package Bundle::Thread;
use strict;
use warnings;
our $VERSION = '1.23';
$VERSION = eval $VERSION;
1;
__END__
=head1 NAME
Bundle::Thread - A bundle of modules for supporting threads in Perl
=head1 SYNOPSIS
perl -MCPAN -e "install Bundle::Thread"
=head1 CONTENTS
Test::Simple 1.302059 - Used for module testing
Scalar::Util 1.47 - Used by several of the other modules below
threads 2.15 - Support for threads
threads::shared 1.55 - Support for sharing objects between threads
Thread::Semaphore 2.13 - Thread-safe semaphores
Thread::Queue 3.11 - Thread-safe queues
Thread::Suspend 1.22 - Suspend and resume operations for threads
Thread::Cancel 1.13 - Cancel (i.e., kill) threads
=head1 DESCRIPTION
This bundle includes modules used to test and support threads in Perl.
=head1 SEE ALSO
Bundle::Thread on MetaCPAN:
L<https://metacpan.org/release/Bundle-Thread>
Code repository:
L<https://github.com/jdhedden/Bundle-Thread>
=head1 AUTHOR
Jerry D. Hedden, S<E<lt>jdhedden AT cpan DOT orgE<gt>>
=head1 COPYRIGHT AND LICENSE
Copyright 2008, 2009 Jerry D. Hedden. All rights reserved.
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut