diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-09-27 04:08:56 +0300 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-10-02 15:04:57 +0000 |
commit | af685957336d0a37645ff959496386c489e0b52a (patch) | |
tree | 0bf174a4e022dbc1a9ff2cb2ba7ebbd5d8ae436b /pod/perldiag.pod | |
parent | 77b096b5f2a0becf5ed578f9a5dea854fda8c05b (diff) | |
download | perl-af685957336d0a37645ff959496386c489e0b52a.tar.gz |
reentrant buffers
Message-ID: <20020926220856.GA339120@lyta.hut.fi>
p4raw-id: //depot/perl@17967
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 3da728d06a..40f9929156 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -3118,6 +3118,14 @@ signed integers. See L<perlfunc/pack>. (F) You can't specify a repeat count so large that it overflows your signed integers. See L<perlfunc/unpack>. +=item Result from %s larger than %d bytes + +(W misc) A library call like getgrent() tried to return more results +than Perl was willing to accept. This happens only when Perl has been +compiled to have threads and to have an upper limit on such calls +(the default is to keep regrowing the result buffer until the result fits). +However, now the results were truncated. + =item Reversed %s= operator (W syntax) You wrote your assignment operator backwards. The = must |