summaryrefslogtreecommitdiff
path: root/pod/perlguts.pod
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1998-01-09 12:55:09 -0500
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-02-06 15:53:53 +0000
commit8c52afecd5252bed5ed8df3a63a6cd9affde4ab4 (patch)
treebf76561b68d175b89a738902a9cce82ceb3cb23c /pod/perlguts.pod
parentcdaebead333273a920fe10cbcb2213a9fbefa241 (diff)
downloadperl-8c52afecd5252bed5ed8df3a63a6cd9affde4ab4.tar.gz
Newer -DLEAKTEST patch
p4raw-id: //depot/perl@466
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r--pod/perlguts.pod7
1 files changed, 4 insertions, 3 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index 1db8249d24..4806815de4 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -2123,13 +2123,14 @@ SV is B<not> incremented.
SV* newRV_noinc _((SV* ref));
-=item newSV
+=item NEWSV
Creates a new SV. The C<len> parameter indicates the number of bytes of
preallocated string space the SV should have. The reference count for the
-new SV is set to 1.
+new SV is set to 1. C<id> is an integer id between 0 and 1299 (used to
+identify leaks).
- SV* newSV _((STRLEN len));
+ SV* NEWSV _((int id, STRLEN len));
=item newSViv