]> git.vpit.fr Git - perl/modules/Thread-Cleanup.git/commitdiff
Be more precise about the hook timing with regards to END blocks
authorVincent Pit <vince@profvince.com>
Sun, 28 Sep 2014 15:34:50 +0000 (17:34 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 28 Sep 2014 15:34:50 +0000 (17:34 +0200)
lib/Thread/Cleanup.pm

index 1a51b89d282c771ef4e619c260c8a567e5e2442e..c09372c330a6a81f6ca74d924b3db87adb2ee095 100644 (file)
@@ -49,22 +49,26 @@ The hook will also be called when pseudo-forks (i.e. processes spawn on Windows
     register { ... };
     &register($coderef);
 
-Specify that the given block or code reference C<$coderef> will have to be called (in void context, without arguments) every time a thread finishes its job.
-More precisely,
+Specify that the given block or code reference C<$coderef> will have to be called (in void context, without arguments) every time a thread or a pseudo-fork terminates.
+More precisely :
 
 =over 4
 
 =item *
 
-it will always be called before the joining for joined threads ;
+For joined threads, it will be called when C<join> succeeds, after any C<END> block local to the spawn thread ;
 
 =item *
 
-it will be called for detached threads if and only if they terminate before the main thread, and the hook will then fire at C<END> time ;
+For detached threads, it will be called if and only if the thread terminates before the main thread, and the hook will then fire at global C<END> time ;
 
 =item *
 
-it won't trigger for the destruction of the main thread.
+For pseudo-forks, it will be called when C<waitpid> succeeds, after any C<END> block local to the spawn process but before any global C<END> block ;
+
+=item *
+
+It will never trigger for the destruction of the main thread.
 
 =back