diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2002-05-11 21:00:51 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-11 18:43:58 +0000 |
commit | bfce6503c5d952d8f1af33465734e82b1483281e (patch) | |
tree | 67da52736d6a4586432bb025c6189ec3c284bcd3 /pod/perlothrtut.pod | |
parent | ceea138788c46b183220c4e9ce5aee45bb27dfa4 (diff) | |
download | perl-bfce6503c5d952d8f1af33465734e82b1483281e.tar.gz |
updated threads docs
Message-ID: <20020511200050.D14841@fdgroup.com>
p4raw-id: //depot/perl@16543
Diffstat (limited to 'pod/perlothrtut.pod')
-rw-r--r-- | pod/perlothrtut.pod | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/pod/perlothrtut.pod b/pod/perlothrtut.pod index 833f0c42cf..322ff8ecc2 100644 --- a/pod/perlothrtut.pod +++ b/pod/perlothrtut.pod @@ -4,17 +4,18 @@ perlothrtut - old tutorial on threads in Perl =head1 DESCRIPTION -B<WARNING>: Threading is an experimental feature. Both the interface -and implementation are subject to change drastically. In fact, this -documentation describes the flavor of threads that was in version -5.005. Perl 5.6.0 and later have the beginnings of support for -interpreter threads, which (when finished) is expected to be -significantly different from what is described here. The information -contained here may therefore soon be obsolete. Use at your own risk! - -One of the most prominent new features of Perl 5.005 is the inclusion -of threads. Threads make a number of things a lot easier, and are a -very useful addition to your bag of programming tricks. +B<WARNING>: +This tutorial describes the old-style thread model that was introduced in +release 5.005. This model is now deprecated, and will be removed, probably +in version 5.10. The interfaces described here were considered +experimental, and are likely to be buggy. + +For information about the new interpreter threads ("ithreads") model, see +the F<perlthrtut> tutorial, and the L<threads> and L<threads::shared> +modules. + +You are strongly encouraged to migrate any existing threads code to the +new model as soon as possible. =head1 What Is A Thread Anyway? |