Robin Houston remarks that mention of a context is missing from the
Rafael Garcia-Suarez [Mon, 31 Oct 2005 08:40:23 +0000 (08:40 +0000)]
threads.pm documentation.

p4raw-id: //depot/perl@25912

ext/threads/threads.pm

index c320d1c..ef66eb2 100755 (executable)
@@ -148,7 +148,7 @@ This will wait for the corresponding thread to join. When the thread
 finishes, join() will return the return values of the entry point
 function. If the thread has been detached, an error will be thrown.
 
-The context (scalar or list) of the thread creation is also the
+The context (void, scalar or list) of the thread creation is also the
 context for join().  This means that if you intend to return an array
 from a thread, you must use C<my ($thread) = threads->new(...)>, and
 that if you intend to return a scalar, you must use C<my $thread = ...>.
@@ -241,7 +241,7 @@ On some platforms it might not be possible to destroy "parent"
 threads while there are still existing child "threads".
 
 This will possibly be fixed in later versions of perl.
-  
+
 =item tid is I32
 
 The thread id is a 32 bit integer, it can potentially overflow.