diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-16 20:18:58 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-16 20:18:58 +0000 |
commit | 7994ab570190ecbe2fce4549592cfcd8bb620e43 (patch) | |
tree | 82e81e2d1575761158dcaaac2b5e6e27714c32e2 /intrpvar.h | |
parent | 93e68bfb4c30bda791d4bf574f645d153ab4343b (diff) | |
download | perl-7994ab570190ecbe2fce4549592cfcd8bb620e43.tar.gz |
PL_pte_root and PL_pte_arenaroot can be exterminated. Which reveals
an erroneous remaining reference to PL_pte_root to correct.
p4raw-id: //depot/perl@26142
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/intrpvar.h b/intrpvar.h index 1612b9f4a8..7c14985aaf 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -251,9 +251,6 @@ PERLVARA(Ibody_roots, SVt_LAST, void*) /* array of body roots */ PERLVAR(Ihe_root, HE *) /* free he list */ -#if defined(USE_ITHREADS) -PERLVAR(Ipte_root, struct ptr_tbl_ent *) /* free ptr_tbl_ent list */ -#endif PERLVAR(Inice_chunk, char *) /* a nice chunk of memory to reuse */ PERLVAR(Inice_chunk_size, U32) /* how nice the chunk of memory is */ @@ -421,10 +418,6 @@ PERLVARI(Ibeginav_save, AV*, Nullav) /* save BEGIN{}s when compiling */ PERLVARA(Ibody_arenaroots, SVt_LAST, void*) /* consolidated body-arena pointers */ PERLVAR(Ihe_arenaroot, HE *) /* list of allocated he areas */ -#if defined(USE_ITHREADS) -PERLVAR(Ipte_arenaroot, struct ptr_tbl_ent *) /* list of allocated pte areas */ - -#endif /* 5.6.0 stopped here */ |