diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-20 00:39:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-20 00:39:02 +0000 |
commit | ce333219556f6d529f7e259feeb5cc99020a19a7 (patch) | |
tree | 2360cad6b95170ea8fdca4ae3d42d1b8e817ab83 /intrpvar.h | |
parent | 86989e5ddfebcf92232ac079b053bdae48a24c3d (diff) | |
download | perl-ce333219556f6d529f7e259feeb5cc99020a19a7.tar.gz |
Create a per-interpeter debug scratchpad container
and use that for the regexec debugging.
p4raw-id: //depot/perl@13110
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index 2d47c8bcd1..a8695f52b5 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -502,6 +502,10 @@ PERLVARI(Idef_layerlist, PerlIO_list_t *,NULL) PERLVARI(Iencoding, SV*, Nullsv) /* character encoding */ +#ifdef DEBUGGING +PERLVAR(Idebug_pad, struct perl_debug_pad) +#endif + /* New variables must be added to the very end for binary compatibility. * XSUB.h provides wrapper functions via perlapi.h that make this * irrelevant, but not all code may be expected to #include XSUB.h. */ |