summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorVishal Bhatia <vishal@deja.com>1999-08-25 09:31:33 +0900
committerGurusamy Sarathy <gsar@cpan.org>1999-09-20 03:25:25 +0000
commit932e9ff92dfdad82564fe7085f2cb398e628fac3 (patch)
tree7d279cbfce2410b85118b9a31dd6a84cc30d38da /intrpvar.h
parent5a844595b9262407e093364ec4d29a22962723f0 (diff)
downloadperl-932e9ff92dfdad82564fe7085f2cb398e628fac3.tar.gz
add arenas for managing allocations of remaining xpv*v structures
Message-ID: <Pine.LNX.4.10.9908250031000.11727-100000@localhost.localdomain> Subject: [PATCH 5.005_60] removing extra ref count (compiler) p4raw-id: //depot/perl@4198
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h
index 669e6f97ad..e5b26913e8 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -222,6 +222,14 @@ PERLVAR(Ixiv_root, IV *) /* free xiv list--shared by interpreters */
PERLVAR(Ixnv_root, NV *) /* free xnv list--shared by interpreters */
PERLVAR(Ixrv_root, XRV *) /* free xrv list--shared by interpreters */
PERLVAR(Ixpv_root, XPV *) /* free xpv list--shared by interpreters */
+PERLVAR(Ixpviv_root, XPVIV *) /* free xpviv list--shared by interpreters */
+PERLVAR(Ixpvnv_root, XPVNV *) /* free xpvnv list--shared by interpreters */
+PERLVAR(Ixpvcv_root, XPVCV *) /* free xpvcv list--shared by interpreters */
+PERLVAR(Ixpvav_root, XPVAV *) /* free xpvav list--shared by interpreters */
+PERLVAR(Ixpvhv_root, XPVHV *) /* free xpvhv list--shared by interpreters */
+PERLVAR(Ixpvmg_root, XPVMG *) /* free xpvmg list--shared by interpreters */
+PERLVAR(Ixpvlv_root, XPVLV *) /* free xpvlv list--shared by interpreters */
+PERLVAR(Ixpvbm_root, XPVBM *) /* free xpvbm list--shared by interpreters */
PERLVAR(Ihe_root, HE *) /* free he list--shared by interpreters */
PERLVAR(Inice_chunk, char *) /* a nice chunk of memory to reuse */
PERLVAR(Inice_chunk_size, U32) /* how nice the chunk of memory is */