diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-03 13:47:22 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-03 13:47:22 +0000 |
commit | e4f9f4fe1c8aa755cea4aa44a654a48a69bd4e06 (patch) | |
tree | 55b2630760f490bc8415bf8b943cbab8ec911d83 /pod/perldiag.pod | |
parent | 17689f3f46f6098d3396653de7f7540c2363fa0f (diff) | |
download | perl-e4f9f4fe1c8aa755cea4aa44a654a48a69bd4e06.tar.gz |
Document the "Cleanup skipped ..." warning.
p4raw-id: //depot/perl@15700
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 08f342aee1..132d65e4b7 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1125,6 +1125,14 @@ and so on) and not for Unicode characters, so Perl behaved as if you meant If you actually want to pack Unicode codepoints, use the C<"U"> format instead. +=item Cleanup skipped %d active threads + +(W) When using threaded Perl, the main thread exited while there were +still other threads running. This is not a good sign: you should either +explicitly join the threads, or let the threads detach themselves, or +somehow be certain that all the non-main threads have finished. See +L<threads>. + =item close() on unopened filehandle %s (W unopened) You tried to close a filehandle that was never opened. |