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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
package threads;
use 5.7.2;
use strict;
use warnings;
use overload
'==' => \&equals,
'fallback' => 1;
#use threads::Shared;
require Exporter;
require DynaLoader;
our @ISA = qw(Exporter DynaLoader);
our %EXPORT_TAGS = ( all => [qw()]);
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = qw(
);
our $VERSION = '0.05';
sub new {
my $class = shift;
return $class->create(@_);
}
sub equals {
return 1 if($_[0]->tid() == $_[1]->tid());
return 0;
}
$Config::threads = 1;
bootstrap threads $VERSION;
# Preloaded methods go here.
1;
__END__
=head1 NAME
threads - Perl extension allowing use of interpreter based threads from perl
=head1 SYNOPSIS
use threads;
sub start_thread {
print "Thread started\n";
}
my $thread = threads->new("start_thread","argument");
$thread->new(sub { print "I am a thread"},"argument");
$thread->join();
$thread->detach();
$thread = threads->self();
thread->tid();
=head1 DESCRIPTION
Perl 5.6 has something called interpreter threads, interpreter threads
are built on MULTIPLICITY and allows for several different perl
interpreters to run in different threads. This has been used in win32
perl to fake forks, it has also been available to people embedding
perl.
=over
=item new, function, LIST
This will create a new thread with the entry point function and give
it LIST as parameters. It will return the corresponding threads
object.
=item $threads->join
This will wait for the corresponding thread to join. When it finishes join will return the return values of the root function.
If a thread has been detached, join will return without wait.
=item $threads->detach
Will throw away the return value from the thread and make non joinable
=item threads->self
This will return the object for the current thread.
=item $threads->tid
This will return the id of the thread.
threads->self->tid() is a quick way to get current thread id
=back
=head1 TODO
=over
=item Fix so the return value is returned when you join
=item Add join_all
=item Fix memory leaks!
=back
=head1 AUTHOR and COPYRIGHT
Artur Bergman E<lt>artur at contiller.seE<gt>
threads is released under the same license as Perl
Thanks to
Richard Soderberg E<lt>rs at crystalflame.netE<gt>
Helping me out tons, trying to find reasons for races and other weird bugs!
Simon Cozens E<lt>simon at brecon.co.ukE<gt>
Being there to answer zillions of annoying questions
Rocco Caputo E<lt>troc at netrus.netE<gt>
Vipul Ved Prakash E<lt>mail at vipul.netE<gt>
Helping with debugging.
please join perl-ithreads@perl.org for more information
=head1 BUGS
=over
=item creating a thread from within a thread is unsafe under win32
=item PERL_OLD_SIGNALS are not threadsafe, will not be.
=back
=head1 SEE ALSO
L<perl>, L<perlcall>, L<perlembed>, L<perlguts>
=cut
|