summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-05-06 12:34:36 +0000
committerNicholas Clark <nick@ccl4.org>2005-05-06 12:34:36 +0000
commit32e691d01937c3a18dbf57e0e5a2d5fbb7d48dd1 (patch)
treea11696ee3ef89cb4a58b66f9b0d4a45d330d915b /intrpvar.h
parent10dc53a8154025af62e262e2eb794f2ba054e8e5 (diff)
downloadperl-32e691d01937c3a18dbf57e0e5a2d5fbb7d48dd1.tar.gz
Allocate pointer table entries (for ithread cloning) from an arena
p4raw-id: //depot/perl@24404
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h
index 3fe5adb736..2125acf180 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -261,6 +261,7 @@ PERLVAR(Ixpvmg_root, XPVMG *) /* free xpvmg list */
PERLVAR(Ixpvlv_root, XPVLV *) /* free xpvlv list */
PERLVAR(Ixpvbm_root, XPVBM *) /* free xpvbm list */
PERLVAR(Ihe_root, HE *) /* free he list */
+PERLVAR(Ipte_root, struct ptr_tbl_ent *) /* free ptr_tbl_ent list */
PERLVAR(Inice_chunk, char *) /* a nice chunk of memory to reuse */
PERLVAR(Inice_chunk_size, U32) /* how nice the chunk of memory is */
@@ -437,6 +438,7 @@ PERLVAR(Ixpvmg_arenaroot,XPVMG*) /* list of allocated xpvmg areas */
PERLVAR(Ixpvlv_arenaroot,XPVLV*) /* list of allocated xpvlv areas */
PERLVAR(Ixpvbm_arenaroot,XPVBM*) /* list of allocated xpvbm areas */
PERLVAR(Ihe_arenaroot, XPV*) /* list of allocated he areas */
+PERLVAR(Ipte_arenaroot, XPV*) /* list of allocated he areas */
/* 5.6.0 stopped here */