diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-18 21:33:57 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-18 21:33:57 +0000 |
commit | 0faf3e6502ba533234322c904a3fa6b70b610627 (patch) | |
tree | b6ab13f80d82a8fc50bdbffec28f1b78204dc125 /pod/perldiag.pod | |
parent | 9f62e1ec6945a49a52880c6619a9badbeb4bb8ea (diff) | |
parent | da0838f1870c5338e6bf9ab745ef01fde1406476 (diff) | |
download | perl-0faf3e6502ba533234322c904a3fa6b70b610627.tar.gz |
Integrate with Sarathy.
p4raw-id: //depot/cfgperl@3698
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 9b3ebb198f..96031a54e6 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -317,6 +317,12 @@ could indicate that SvREFCNT_dec() was called too many times, or that SvREFCNT_inc() was called too few times, or that the SV was mortalized when it shouldn't have been, or that memory has been corrupted. +=item Attempt to join self + +(F) You tried to join a thread from within itself, which is an +impossible task. You may be joining the wrong thread, or you may +need to move the join() to some other thread. + =item Attempt to pack pointer to temporary value (W) You tried to pass a temporary value (like the result of a |