diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-06 12:34:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-06 12:34:36 +0000 |
commit | 32e691d01937c3a18dbf57e0e5a2d5fbb7d48dd1 (patch) | |
tree | a11696ee3ef89cb4a58b66f9b0d4a45d330d915b /intrpvar.h | |
parent | 10dc53a8154025af62e262e2eb794f2ba054e8e5 (diff) | |
download | perl-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.h | 2 |
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 */ |