diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-01-16 22:07:26 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-01-16 22:07:26 +0000 |
commit | ce08f86c8b1d404b3d9fec75a102b8cd65f8766a (patch) | |
tree | 99554dbf0369752a5ad53b5a4f7cacfeee7993f8 /gv.c | |
parent | 8a56572fafff2f72353c07ffd8e7d0373972b8d5 (diff) | |
download | perl-ce08f86c8b1d404b3d9fec75a102b8cd65f8766a.tar.gz |
Provide infrastructure for PERL_ASYNC_CHECK() style safe signals.
Provides all the "cost" but no benefit yet - it is to allow cost
to be measured, and implementation experiments (just in mg.c?).
p4raw-id: //depot/perlio@8457
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -753,6 +753,7 @@ Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, I32 sv_type) int sig_num[] = { SIG_NUM }; New(73, PL_psig_ptr, sizeof(sig_num)/sizeof(*sig_num), SV*); New(73, PL_psig_name, sizeof(sig_num)/sizeof(*sig_num), SV*); + New(73, PL_psig_pend, sizeof(sig_num)/sizeof(*sig_num), int); } GvMULTI_on(gv); hv = GvHVn(gv); |