summaryrefslogtreecommitdiff
path: root/pod/perltodo.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-05-12 23:28:43 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-12 23:28:43 +0000
commit97b33923a08159d5d753e1da3b6306a87b011ee6 (patch)
tree08c1dcef2ef56895c1ce60752ef6f20e5e50240b /pod/perltodo.pod
parent9316ed2f3f1b85ec1c7bd64e588d3213788df548 (diff)
downloadperl-97b33923a08159d5d753e1da3b6306a87b011ee6.tar.gz
Elaborate on the exit/wait plan a bit.
p4raw-id: //depot/perl@16567
Diffstat (limited to 'pod/perltodo.pod')
-rw-r--r--pod/perltodo.pod21
1 files changed, 17 insertions, 4 deletions
diff --git a/pod/perltodo.pod b/pod/perltodo.pod
index 0079cd738b..83f988f639 100644
--- a/pod/perltodo.pod
+++ b/pod/perltodo.pod
@@ -114,8 +114,21 @@ class subtraction.
=head2 Work out exit/die semantics for threads
-There are some suggestion for use a
-C<use threads wait => x> syntax.
+There are some suggestions to use for example something like this:
+default to "(thread exiting first will) wait for the other threads
+until up to 60 seconds". Other possibilities:
+
+ use threads wait => 0;
+
+Do not wait.
+
+ use threads wait_for => 10;
+
+Wait up to 10 seconds.
+
+ use threads wait_for => -1;
+
+Wait for ever.
http://archive.develooper.com/perl5-porters@perl.org/msg79618.html
@@ -177,7 +190,7 @@ C<[1234567890]> aren't the only numerals any more.
=head2 POSIX Unicode character classes
-(C<[=a=]> for equivalance classes, C<[.ch.]> for collation.)
+(C<[=a=]> for equivalence classes, C<[.ch.]> for collation.)
These are dependent on Unicode normalization and collation.
=head2 Factoring out common suffices/prefices in regexps (trie optimization)
@@ -244,7 +257,7 @@ C<&>, C<oct>, C<hex> and C<pack>.
=head2 Replace pod2html with something using Pod::Parser
The CPAN module C<Marek::Pod::Html> may be a more suitable basis for a
-C<pod2html> convertor; the current one duplicates the functionality
+C<pod2html> converter; the current one duplicates the functionality
abstracted in C<Pod::Parser>, which makes updating the POD language
difficult.