diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2007-04-30 13:06:28 -0400 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-05-02 08:43:08 +0000 |
commit | 47f9f84cc98b8a5779f47ca8a12283098d2816e4 (patch) | |
tree | b39025ba2f6fc9f549813cffe63cd2b380bddcf2 /pod | |
parent | 4964fccb418626bbfc96e446747345a4f3e41961 (diff) | |
download | perl-47f9f84cc98b8a5779f47ca8a12283098d2816e4.tar.gz |
Remove ext/Thread
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510704301406t6373912ame78fea5c7a148cf4@mail.gmail.com>
p4raw-id: //depot/perl@31114
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlmodlib.pod | 8 | ||||
-rw-r--r-- | pod/perlothrtut.pod | 4 | ||||
-rw-r--r-- | pod/perlthrtut.pod | 6 |
3 files changed, 5 insertions, 13 deletions
diff --git a/pod/perlmodlib.pod b/pod/perlmodlib.pod index 223b7df1e8..a778c6d082 100644 --- a/pod/perlmodlib.pod +++ b/pod/perlmodlib.pod @@ -1709,14 +1709,6 @@ Thread-safe queues Thread-safe semaphores -=item Thread::Signal - -Start a thread which runs signal handlers reliably (for old code) - -=item Thread::Specific - -Thread-specific keys - =item Tie::Array Base class for tied arrays diff --git a/pod/perlothrtut.pod b/pod/perlothrtut.pod index a481e9f3ba..12811dc4db 100644 --- a/pod/perlothrtut.pod +++ b/pod/perlothrtut.pod @@ -6,8 +6,8 @@ perlothrtut - old tutorial on threads in Perl 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 +release 5.005. This model is deprecated, and has been removed +for 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 diff --git a/pod/perlthrtut.pod b/pod/perlthrtut.pod index a6b0b18506..65992c70fe 100644 --- a/pod/perlthrtut.pod +++ b/pod/perlthrtut.pod @@ -10,9 +10,9 @@ 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. -B<NOTE>: There is another older Perl threading flavor called the 5.005 model -that used the L<Threads> class. This old model is known to have problems, is -deprecated, and support for it will be removed in release 5.10. You are +B<NOTE>: There was another older Perl threading flavor called the 5.005 model +that used the L<Threads> class. This old model was known to have problems, is +deprecated, and was removed for release 5.10. You are strongly encouraged to migrate any existing 5.005 threads code to the new model as soon as possible. |