Thread doc tweaks.
[p5sagit/p5-mst-13.2.git] / ext / threads / threads.pm
CommitLineData
47ba8780 1package threads;
2
73e09c8f 3use 5.007_003;
47ba8780 4use strict;
5use warnings;
73e09c8f 6use Config;
7
8BEGIN {
9 unless ($Config{useithreads}) {
10 my @caller = caller(2);
11 die <<EOF;
12$caller[1] line $caller[2]:
13
14This Perl hasn't been configured and built properly for the threads
15module to work. (The 'useithreads' configuration option hasn't been used.)
16
5e549d84 17Having threads support requires all of Perl and all of the XS modules in
73e09c8f 18the Perl installation to be rebuilt, it is not just a question of adding
19the threads module. (In other words, threaded and non-threaded Perls
20are binary incompatible.)
21
22If you want to the use the threads module, please contact the people
23who built your Perl.
24
25Cannot continue, aborting.
26EOF
27 }
28}
47ba8780 29
68795e93 30use overload
43d3ddbe 31 '==' => \&equal,
47ba8780 32 'fallback' => 1;
33
47ba8780 34#use threads::Shared;
35
dab065ea 36BEGIN {
37 warn "Warning, threads::shared has already been loaded. ".
38 "To enable shared variables for these modules 'use threads' ".
39 "must be called before any of those modules are loaded\n"
40 if($threads::shared::threads_shared);
41}
42
47ba8780 43require Exporter;
44require DynaLoader;
45
47ba8780 46our @ISA = qw(Exporter DynaLoader);
47
70f2e746 48our %EXPORT_TAGS = ( all => [qw(yield)]);
47ba8780 49
50our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
51
52our @EXPORT = qw(
dcb6ccbc 53async
47ba8780 54);
678a9b6c 55our $VERSION = '0.99';
47ba8780 56
47ba8780 57
43d3ddbe 58sub equal {
47ba8780 59 return 1 if($_[0]->tid() == $_[1]->tid());
60 return 0;
61}
62
dcb6ccbc 63sub async (&;@) {
64 my $cref = shift;
65 return threads->new($cref,@_);
66}
67
8222d950 68$threads::threads = 1;
47ba8780 69
70bootstrap threads $VERSION;
71
68795e93 72# why document 'new' then use 'create' in the tests!
73*create = \&new;
74
47ba8780 75# Preloaded methods go here.
76
771;
78__END__
79
80=head1 NAME
81
82threads - Perl extension allowing use of interpreter based threads from perl
83
84=head1 SYNOPSIS
85
38875929 86 use threads;
47ba8780 87
38875929 88 sub start_thread {
89 print "Thread started\n";
90 }
47ba8780 91
38875929 92 my $thread = threads->create("start_thread","argument");
93 my $thread2 = $thread->create(sub { print "I am a thread"},"argument");
94 my $thread3 = async { foreach (@files) { ... } };
47ba8780 95
38875929 96 $thread->join();
97 $thread->detach();
47ba8780 98
38875929 99 $thread = threads->self();
11c51ed3 100
38875929 101 $thread->tid();
102 threads->tid();
103 threads->self->tid();
47ba8780 104
38875929 105 threads->yield();
f9dff5f5 106
38875929 107 threads->list();
678a9b6c 108
47ba8780 109=head1 DESCRIPTION
110
43d3ddbe 111Perl 5.6 introduced something called interpreter threads. Interpreter
112threads are different from "5005threads" (the thread model of Perl
1135.005) by creating a new perl interpreter per thread and not sharing
114any data or state between threads.
11c51ed3 115
43d3ddbe 116Prior to perl 5.8 this has only been available to people embedding
117perl and for emulating fork() on windows.
11c51ed3 118
43d3ddbe 119The threads API is loosely based on the old Thread.pm API. It is very
120important to note that variables are not shared between threads, all
121variables are per default thread local. To use shared variables one
122must use threads::shared.
11c51ed3 123
38875929 124It is also important to note that you must enable threads by
43d3ddbe 125doing C<use threads> as early as possible and that it is not possible
dab065ea 126to enable threading inside an eval ""; In particular, if you are
127intending to share variables with threads::shared, you must
128C<use threads> before you C<use threads::shared> and threads will emit
129a warning if you do it the other way around.
47ba8780 130
131=over
132
9c4972d9 133=item $thread = threads->create(function, LIST)
47ba8780 134
ad91d581 135This will create a new thread with the entry point function and give
136it LIST as parameters. It will return the corresponding threads
38875929 137object. The new() method is an alias for create().
47ba8780 138
11c51ed3 139=item $thread->join
47ba8780 140
38875929 141This will wait for the corresponding thread to join. When the thread finishes,
142join() will return the return values of the entry point function. If the
143thread has been detached, an error will be thrown. If the program
144exits without all other threads having been either joined or detached,
145then a warning will be issued. (A program exits either because one of its
146threads explicitly calls exit(), or in the case of the main thread, reaches
147the end of the main program file.)
47ba8780 148
11c51ed3 149=item $thread->detach
47ba8780 150
38875929 151Will make the thread unjoinable, and cause any eventual return value to be
152discarded.
47ba8780 153
154=item threads->self
155
38875929 156This will return the thread object for the current thread.
47ba8780 157
11c51ed3 158=item $thread->tid
47ba8780 159
38875929 160This will return the id of the thread. Thread IDs are integers, with the
161main thread in a program being 0. Currently Perl assigns a unique tid to
162every thread ever created in your program, assigning the first thread to
163be created a tid of 1, and increasing the tid by 1 for each new thread
164that's created.
165
166NB the class method C<< threads->tid() >> is a quick way to get the
167current thread id if you don't have your thread object handy.
47ba8780 168
f9dff5f5 169=item threads->yield();
170
38875929 171This is a suggestion to the OS to let this thread yield CPU time to other
172threads. What actually happens is highly dependent upon the underlying
173thread implementation.
f9dff5f5 174
70f2e746 175You may do C<use threads qw(yield)> then use just a bare C<yield> in your
176code.
177
678a9b6c 178=item threads->list();
179
180This will return a list of all non joined, non detached threads.
181
386c44e5 182=item async BLOCK;
183
184C<async> creates a thread to execute the block immediately following
185it. This block is treated as an anonymous sub, and so must have a
38875929 186semi-colon after the closing brace. Like C<< threads->new >>, C<async>
386c44e5 187returns a thread object.
188
47ba8780 189=back
190
e4f9f4fe 191=head1 WARNINGS
192
193=over 4
194
c133c03f 195=item A thread exited while %d other threads were still running
e4f9f4fe 196
c133c03f 197A thread (not necessarily the main thread) exited while there were
198still other threads running. Usually it's a good idea to first collect
199the return values of the created threads by joining them, and only then
200exit from then main thread.
e4f9f4fe 201
202=back
47ba8780 203
678a9b6c 204=head1 BUGS / TODO
205
38875929 206The current implementation of threads has been an attempt to get
678a9b6c 207a correct threading system working that could be built on,
208and optimized, in newer versions of perl.
209
38875929 210Currently the overhead of creating a thread is rather large,
678a9b6c 211also the cost of returning values can be large. These are areas
212were there most likely will be work done to optimize what data
213that needs to be cloned.
47ba8780 214
215=over
216
678a9b6c 217=item Parent-Child threads.
218
219On some platforms it might not be possible to destroy "parent"
220threads while there are still existing child "threads".
221
222This will be possibly be fixed in later versions of perl.
223
224=item tid is I32
225
226The tid is a 32 bit integer, it can potentially overflow.
227This might be fixed in a later version of perl.
47ba8780 228
678a9b6c 229=item Returning objects
47ba8780 230
678a9b6c 231When you return an object the entire stash that the object is blessed
232as well. This will lead to a large memory usage.
233The ideal situation would be to detect the original stash if it existed.
234
235=item PERL_OLD_SIGNALS are not threadsafe, will not be.
47ba8780 236
237=back
238
239=head1 AUTHOR and COPYRIGHT
240
11c51ed3 241Arthur Bergman E<lt>arthur at contiller.seE<gt>
47ba8780 242
43d3ddbe 243threads is released under the same license as Perl.
47ba8780 244
68795e93 245Thanks to
47ba8780 246
68795e93 247Richard Soderberg E<lt>rs at crystalflame.netE<gt>
ad91d581 248Helping me out tons, trying to find reasons for races and other weird bugs!
47ba8780 249
ad91d581 250Simon Cozens E<lt>simon at brecon.co.ukE<gt>
251Being there to answer zillions of annoying questions
47ba8780 252
ad91d581 253Rocco Caputo E<lt>troc at netrus.netE<gt>
47ba8780 254
ad91d581 255Vipul Ved Prakash E<lt>mail at vipul.netE<gt>
47ba8780 256Helping with debugging.
257
258please join perl-ithreads@perl.org for more information
259
47ba8780 260=head1 SEE ALSO
261
5e549d84 262L<threads::shared>, L<perlthrtut>,
263L<http://www.perl.com/pub/a/2002/06/11/threads.html>,
264L<perlcall>, L<perlembed>, L<perlguts>
47ba8780 265
266=cut