diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-13 11:09:03 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-13 11:09:03 +0000 |
commit | 727879eb6b2788a9f5fecb8eee8070dfc0b326b7 (patch) | |
tree | 9c5052d57a5eef99a1d13a42ac5b5618101c2992 /intrpvar.h | |
parent | d94cde48b58209946d142fc5018969fd2b8285e8 (diff) | |
download | perl-727879eb6b2788a9f5fecb8eee8070dfc0b326b7.tar.gz |
Allocate GV bodies from arenas
p4raw-id: //depot/perl@24459
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index bca17b0c7c..ab08e054cb 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -258,6 +258,7 @@ PERLVAR(Ixpvcv_root, XPVCV *) /* free xpvcv list */ PERLVAR(Ixpvav_root, XPVAV *) /* free xpvav list */ PERLVAR(Ixpvhv_root, XPVHV *) /* free xpvhv list */ PERLVAR(Ixpvmg_root, XPVMG *) /* free xpvmg list */ +PERLVAR(Ixpvgv_root, XPVGV *) /* free xpvgv list */ PERLVAR(Ixpvlv_root, XPVLV *) /* free xpvlv list */ PERLVAR(Ixpvbm_root, XPVBM *) /* free xpvbm list */ PERLVAR(Ihe_root, HE *) /* free he list */ @@ -437,6 +438,7 @@ PERLVAR(Ixpvcv_arenaroot,XPVCV*) /* list of allocated xpvcv areas */ PERLVAR(Ixpvav_arenaroot,XPVAV*) /* list of allocated xpvav areas */ PERLVAR(Ixpvhv_arenaroot,XPVHV*) /* list of allocated xpvhv areas */ PERLVAR(Ixpvmg_arenaroot,XPVMG*) /* list of allocated xpvmg areas */ +PERLVAR(Ixpvgv_arenaroot,XPVGV*) /* list of allocated xpvgv areas */ PERLVAR(Ixpvlv_arenaroot,XPVLV*) /* list of allocated xpvlv areas */ PERLVAR(Ixpvbm_arenaroot,XPVBM*) /* list of allocated xpvbm areas */ PERLVAR(Ihe_arenaroot, HE *) /* list of allocated he areas */ |