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 /mg.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 'mg.c')
-rw-r--r-- | mg.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -2145,6 +2145,15 @@ Perl_whichsig(pTHX_ char *sig) return 0; } +void +Perl_despatch_signals(pTHX) +{ +#ifndef PERL_OLD_SIGNALS + /* This is just a dummy for now */ +#endif + PL_sig_pending = 0; +} + static SV* sig_sv; Signal_t |