diff options
author | Artur Bergman <sky@nanisky.com> | 2001-06-07 13:52:16 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-09 16:11:51 +0000 |
commit | 4a09accc6c4d5aaf9842ce7a2c4ad0d7c9824951 (patch) | |
tree | 6206fa72de3b70e4b7e0576695624df3a876ba20 /intrpvar.h | |
parent | 5ca37ce9a896d8d8db4aa0d3ecf10ef4edb561a0 (diff) | |
download | perl-4a09accc6c4d5aaf9842ce7a2c4ad0d7c9824951.tar.gz |
New attempt to clone callack
Message-ID: <B7451B6F.12B7%artur@contiller.se>
p4raw-id: //depot/perl@10486
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index d2f8e73c2b..f84f3841b4 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -478,3 +478,8 @@ PERLVAR(Inumeric_radix_sv, SV *) /* The radix separator if not '.' */ /* 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. */ + +#if defined(USE_ITHREADS) +PERLVAR(Iclone_callbacks, AV*) /* used for collecting callbacks during perl_clone*/ +#endif + |