X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=README;h=d3ebe0be6c9bbdcb1e73fa14858a487d57647cc1;hb=5df33e24c91c6ebd942de8ed5eb45dd4c1b24269;hp=d040c46db61b5e6cdef6c16258f5e686d439c02a;hpb=15b9171b2fc61b12e0dcc123369fc2b66fe87012;p=perl%2Fmodules%2FThread-Cleanup.git diff --git a/README b/README index d040c46..d3ebe0b 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Thread::Cleanup - Hook thread destruction. VERSION - Version 0.01 + Version 0.05 SYNOPSIS use Thread::Cleanup; @@ -22,26 +22,33 @@ DESCRIPTION program, with the exception of the main thread. FUNCTIONS - "register BLOCK" - Specify that the "BLOCK" will have to be called (in void context, - without arguments) every time a thread finishes is job. More precisely, + "register" + register { ... }; + ®ister($coderef); - * it will always be called before the join for joined threads ; + Specify that the given block or code reference $coderef will have to be + called (in void context, without arguments) every time a thread finishes + its job. More precisely, - * 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 will always be called before the joining for joined threads ; - * it won't trigger for the the destruction of the main thread. + * it will be called for detached threads if and only if they terminate + before the main thread, and the hook will then fire at "END" time ; + + * it won't trigger for the destruction of the main thread. EXPORT None. DEPENDENCIES - "perl" 5.8. + perl 5.8. + + A C compiler. This module may happen to build with a C++ compiler as + well, but don't rely on it, as no guarantee is made in this regard. - "threads" 1.07. + threads 1.07. - "XSLoader". + XSLoader. AUTHOR Vincent Pit, "", . @@ -62,7 +69,7 @@ ACKNOWLEDGEMENTS Inspired by a question from TonyC on #p5p. COPYRIGHT & LICENSE - Copyright 2009 Vincent Pit, all rights reserved. + Copyright 2009,2010,2013 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.