This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d42615
)
perlthrtut: #109408
author
Brian Fraser
<fraserbn@gmail.com>
Wed, 1 Feb 2012 02:41:45 +0000
(23:41 -0300)
committer
Father Chrysostomos
<sprout@cpan.org>
Wed, 27 Jun 2012 15:47:43 +0000
(08:47 -0700)
pod/perlthrtut.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlthrtut.pod
b/pod/perlthrtut.pod
index
6b693d1
..
cec07e0
100644
(file)
--- a/
pod/perlthrtut.pod
+++ b/
pod/perlthrtut.pod
@@
-7,7
+7,7
@@
perlthrtut - Tutorial on threads in Perl
=head1 DESCRIPTION
This tutorial describes the use of Perl interpreter threads (sometimes
-referred to as I<ithreads>)
that was first introduced in Perl 5.6.0
. In this
+referred to as I<ithreads>). In this
model, each thread runs in its own Perl interpreter, and any data sharing
between threads must be explicit. The user-level interface for I<ithreads>
uses the L<threads> class.