Revision history for Thread-Cleanup
+0.02 2009-06-04 21:35 UTC
+ + Doc : Typos and nits.
+ + Fix : Dieing inside a Thread::Cleanup callback no longer causes the
+ whole process to exit.
+ + Tst : Test that detached threads destructors don't fire before END.
+
0.01 2009-03-16 00:30 UTC
First version, released on an unsuspecting world.
--- #YAML:1.0
name: Thread-Cleanup
-version: 0.01
+version: 0.02
abstract: Hook thread destruction.
author:
- Vincent Pit <perl@profvince.com>
bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Thread-Cleanup
homepage: http://search.cpan.org/dist/Thread-Cleanup/
license: http://dev.perl.org/licenses/
- repository: http://git.profvince.com/perl/modules/Thread-Cleanup.git
+ repository: http://git.profvince.com/?p=perl%2Fmodules%2FThread-Cleanup.git
no_index:
directory:
- t
- inc
-generated_by: ExtUtils::MakeMaker version 6.48
+generated_by: ExtUtils::MakeMaker version 6.52
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
Thread::Cleanup - Hook thread destruction.
VERSION
- Version 0.01
+ Version 0.02
SYNOPSIS
use Thread::Cleanup;
* it will be called for detached threads only if they terminate before
the main thread, and the hook will then fire at "END" time ;
- * it won't trigger for the the destruction of the main thread.
+ * it won't trigger for the destruction of the main thread.
EXPORT
None.
DEPENDENCIES
- "perl" 5.8.
+ perl 5.8.
- "threads" 1.07.
+ threads 1.07.
- "XSLoader".
+ XSLoader.
AUTHOR
Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
=head1 VERSION
-Version 0.01
+Version 0.02
=cut
our $VERSION;
BEGIN {
- $VERSION = '0.01';
+ $VERSION = '0.02';
require XSLoader;
XSLoader::load(__PACKAGE__, $VERSION);
}