summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorElizabeth Mattijsen <liz@dijkmat.nl>2002-07-13 01:30:16 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2002-07-12 23:52:34 +0000
commitab80e3f240ea507dcbf37bbec07e38675137e03c (patch)
treeb49964ba514aa470eab7655dc569d6326edb175d /ext
parent801688824a657f7fb4e9373d3d612d0c5c18232c (diff)
downloadperl-ab80e3f240ea507dcbf37bbec07e38675137e03c.tar.gz
[DOC PATCH] threads.pm, threads->tid in DESTROY bug
Message-Id: <4.2.0.58.20020712232919.0224fea0@mickey.dijkmat.nl> p4raw-id: //depot/perl@17511
Diffstat (limited to 'ext')
-rwxr-xr-xext/threads/threads.pm8
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/threads/threads.pm b/ext/threads/threads.pm
index bb86939e7a..5fcbc9fd5c 100755
--- a/ext/threads/threads.pm
+++ b/ext/threads/threads.pm
@@ -217,7 +217,7 @@ exit from the main thread.
=back
-=head1 BUGS / TODO
+=head1 TODO
The current implementation of threads has been an attempt to get
a correct threading system working that could be built on,
@@ -228,6 +228,8 @@ also the cost of returning values can be large. These are areas
were there most likely will be work done to optimize what data
that needs to be cloned.
+=head1 BUGS
+
=over
=item Parent-Child threads.
@@ -235,8 +237,8 @@ that needs to be cloned.
On some platforms it might not be possible to destroy "parent"
threads while there are still existing child "threads".
-This will be possibly be fixed in later versions of perl.
-
+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.