diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-01-25 23:35:45 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-01-25 23:35:45 +0000 |
commit | 60dccfd5a897e34df698470801e2ff6a3a5f3c76 (patch) | |
tree | 637d01a835cc1fe183c7d96901883d7bf144a08d /ext | |
parent | f9fa8de07d79b18d9dfe53441f5cb446332fdc12 (diff) | |
download | perl-60dccfd5a897e34df698470801e2ff6a3a5f3c76.tar.gz |
Remove the caveat about detached threads crashing on Windows
(fixed by #22201). Bump up the version of threads.pm.
p4raw-id: //depot/perl@22218
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/threads/threads.pm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/threads/threads.pm b/ext/threads/threads.pm index 75d141211c..e96531fa48 100755 --- a/ext/threads/threads.pm +++ b/ext/threads/threads.pm @@ -50,7 +50,7 @@ our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( async ); -our $VERSION = '1.01'; +our $VERSION = '1.02'; # || 0 to ensure compatibility with previous versions @@ -264,11 +264,6 @@ If your Perl has been built with PERL_OLD_SIGNALS (one has to explicitly add that symbol to ccflags, see C<perl -V>), signal handling is not threadsafe. -=item Detached threads on Windows - -These aren't yet supported (as of perl 5.8.3), as they may lead to -memory access violation problems. - =back =head1 AUTHOR and COPYRIGHT |