diff options
author | Vishal Bhatia <vishal@deja.com> | 1999-08-25 09:31:33 +0900 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-20 03:25:25 +0000 |
commit | 932e9ff92dfdad82564fe7085f2cb398e628fac3 (patch) | |
tree | 7d279cbfce2410b85118b9a31dd6a84cc30d38da /objXSUB.h | |
parent | 5a844595b9262407e093364ec4d29a22962723f0 (diff) | |
download | perl-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 'objXSUB.h')
-rw-r--r-- | objXSUB.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -524,6 +524,22 @@ #define PL_xnv_root (*Perl_Ixnv_root_ptr(aTHXo)) #undef PL_xpv_root #define PL_xpv_root (*Perl_Ixpv_root_ptr(aTHXo)) +#undef PL_xpvav_root +#define PL_xpvav_root (*Perl_Ixpvav_root_ptr(aTHXo)) +#undef PL_xpvbm_root +#define PL_xpvbm_root (*Perl_Ixpvbm_root_ptr(aTHXo)) +#undef PL_xpvcv_root +#define PL_xpvcv_root (*Perl_Ixpvcv_root_ptr(aTHXo)) +#undef PL_xpvhv_root +#define PL_xpvhv_root (*Perl_Ixpvhv_root_ptr(aTHXo)) +#undef PL_xpviv_root +#define PL_xpviv_root (*Perl_Ixpviv_root_ptr(aTHXo)) +#undef PL_xpvlv_root +#define PL_xpvlv_root (*Perl_Ixpvlv_root_ptr(aTHXo)) +#undef PL_xpvmg_root +#define PL_xpvmg_root (*Perl_Ixpvmg_root_ptr(aTHXo)) +#undef PL_xpvnv_root +#define PL_xpvnv_root (*Perl_Ixpvnv_root_ptr(aTHXo)) #undef PL_xrv_root #define PL_xrv_root (*Perl_Ixrv_root_ptr(aTHXo)) #undef PL_yychar |