diff options
author | Joshua Pritikin <joshua.pritikin@db.com> | 1998-07-06 05:19:29 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-06 23:12:17 +0000 |
commit | a4bb25971c379e48da873823e220bdef09e90ab9 (patch) | |
tree | f7f91b2cc63777509e30e5d8c1d8a78f7b220e5d /intrpvar.h | |
parent | c006b45560c934c84e21e708da01c5fcfc35a02c (diff) | |
download | perl-a4bb25971c379e48da873823e220bdef09e90ab9.tar.gz |
add patch to improve method caching, regen headers
Message-Id: <H00000e50008a518@MHS>
Subject: [PATCH _70] cache missing methods
p4raw-id: //depot/perl@1350
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 ea5159a32a..75fb556596 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -104,6 +104,7 @@ PERLVAR(Ibeginav, AV *) /* names of BEGIN subroutines */ PERLVAR(Iendav, AV *) /* names of END subroutines */ PERLVAR(Iinitav, AV *) /* names of INIT subroutines */ PERLVAR(Istrtab, HV *) /* shared string table */ +PERLVARI(Isub_generation,U32,1) /* incr to invalidate method cache */ /* memory management */ PERLVAR(Isv_count, I32) /* how many SV* are currently allocated */ |