diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-25 15:52:33 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-25 15:52:33 +0000 |
commit | c21d1a0f049833fd2ca59ef598337f86f2cd08f4 (patch) | |
tree | 14de04bc69e174d99a2c18b667d2260f381dd9ef /intrpvar.h | |
parent | 4ba4de046b58ba69d5377ba3b48b04bbfd30638f (diff) | |
download | perl-c21d1a0f049833fd2ca59ef598337f86f2cd08f4.tar.gz |
Track the mapping between source shared hash keys and target shared
hash keys to save repeated lookups during cloning.
p4raw-id: //depot/perl@24574
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index 3fd201d101..ae4850c27e 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -425,6 +425,7 @@ PERLVAR(IProc, struct IPerlProc*) #if defined(USE_ITHREADS) PERLVAR(Iptr_table, PTR_TBL_t*) +PERLVAR(Ishared_hek_table, PTR_TBL_t*) #endif PERLVARI(Ibeginav_save, AV*, Nullav) /* save BEGIN{}s when compiling */ |