diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-21 05:31:13 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-21 05:31:13 +0000 |
commit | 9f53fe7d93eb5e037ad4e2dad8fdfda2936aa875 (patch) | |
tree | f5add400678cdb9ec29d56c8fcfd4ce43023c36c /intrpvar.h | |
parent | 4c2891ed1c6b8a97b3d1318b04ed56b17dd4de31 (diff) | |
download | perl-9f53fe7d93eb5e037ad4e2dad8fdfda2936aa875.tar.gz |
part 2 of PERL_OBJECT fixes (globals in bytecode.h moved to intrpvar.h)
p4raw-id: //depot/perl@1608
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index 71fcda7e94..f952d9dd4b 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -201,6 +201,12 @@ PERLVAR(Ithrsv, SV *) /* struct perl_thread for main thread */ PERLVARI(Ithreadnum, U32, 0) /* incremented each thread creation */ #endif /* USE_THREADS */ +PERLVARI(Iiv_overflows, int, 0); /* from bytecode.h */ +PERLVAR(Isv, SV *); +PERLVAR(Ipv, XPV); +PERLVAR(Iobj_list, void **); +PERLVARI(Iobj_list_fill, I32, -1); + #ifdef PERL_OBJECT PERLVARI(piMem, IPerlMem*, NULL) PERLVARI(piENV, IPerlEnv*, NULL) |