diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-03-27 22:37:35 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-03-29 20:21:11 +0000 |
commit | 19dbb8f173af2c7e80a0837871d15e631aacc74c (patch) | |
tree | 8915a2b2d729657ad28aaadbfb856fcde281b002 | |
parent | 700a71f52a8b687cd8507393838281605745411c (diff) | |
download | perl-19dbb8f173af2c7e80a0837871d15e631aacc74c.tar.gz |
[DOCPATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
Message-ID: <20030327223735.GD277@Bagpuss.unfortu.net>
p4raw-id: //depot/perl@19079
-rw-r--r-- | pod/perlapi.pod | 22 | ||||
-rw-r--r-- | sv.h | 8 |
2 files changed, 29 insertions, 1 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index d31ec00250..f646778f05 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2741,6 +2741,27 @@ Returns a boolean indicating whether the SV contains an unsigned integer. =for hackers Found in file sv.h +=item SvIsCOW + +Returns a boolean indicating whether the SV is Copy-On-Write. (either shared +hash key scalars, or full Copy On Write scalars if 5.9.0 is configured for +COW) + + bool SvIsCOW(SV* sv) + +=for hackers +Found in file sv.h + +=item SvIsCOW_shared_hash + +Returns a boolean indicating whether the SV is Copy-On-Write shared hash key +scalar. + + bool SvIsCOW_shared_hash(SV* sv) + +=for hackers +Found in file sv.h + =item SvIV Coerces the given SV to an integer and returns it. See C<SvIVx> for a @@ -2992,7 +3013,6 @@ Like C<SvPV>, but converts sv to byte representation first if necessary. Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte> otherwise. - char* SvPVbytex(SV* sv, STRLEN len) =for hackers @@ -920,6 +920,14 @@ Like C<SvPV>, but converts sv to byte representation first if necessary. Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte> otherwise. +=for apidoc Am|bool|SvIsCOW|SV* sv +Returns a boolean indicating whether the SV is Copy-On-Write. (either shared +hash key scalars, or full Copy On Write scalars if 5.9.0 is configured for +COW) + +=for apidoc Am|bool|SvIsCOW_shared_hash|SV* sv +Returns a boolean indicating whether the SV is Copy-On-Write shared hash key +scalar. =cut */ |