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 /embedvar.h | |
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 'embedvar.h')
-rw-r--r-- | embedvar.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/embedvar.h b/embedvar.h index fddcd12733..205004ca1f 100644 --- a/embedvar.h +++ b/embedvar.h @@ -355,6 +355,7 @@ #define PL_preprocess (PERL_GET_INTERP->Ipreprocess) #define PL_profiledata (PERL_GET_INTERP->Iprofiledata) #define PL_psig_name (PERL_GET_INTERP->Ipsig_name) +#define PL_psig_pend (PERL_GET_INTERP->Ipsig_pend) #define PL_psig_ptr (PERL_GET_INTERP->Ipsig_ptr) #define PL_ptr_table (PERL_GET_INTERP->Iptr_table) #define PL_replgv (PERL_GET_INTERP->Ireplgv) @@ -363,6 +364,7 @@ #define PL_runops (PERL_GET_INTERP->Irunops) #define PL_sawampersand (PERL_GET_INTERP->Isawampersand) #define PL_sh_path (PERL_GET_INTERP->Ish_path) +#define PL_sig_pending (PERL_GET_INTERP->Isig_pending) #define PL_sighandlerp (PERL_GET_INTERP->Isighandlerp) #define PL_splitstr (PERL_GET_INTERP->Isplitstr) #define PL_srand_called (PERL_GET_INTERP->Isrand_called) @@ -634,6 +636,7 @@ #define PL_preprocess (vTHX->Ipreprocess) #define PL_profiledata (vTHX->Iprofiledata) #define PL_psig_name (vTHX->Ipsig_name) +#define PL_psig_pend (vTHX->Ipsig_pend) #define PL_psig_ptr (vTHX->Ipsig_ptr) #define PL_ptr_table (vTHX->Iptr_table) #define PL_replgv (vTHX->Ireplgv) @@ -642,6 +645,7 @@ #define PL_runops (vTHX->Irunops) #define PL_sawampersand (vTHX->Isawampersand) #define PL_sh_path (vTHX->Ish_path) +#define PL_sig_pending (vTHX->Isig_pending) #define PL_sighandlerp (vTHX->Isighandlerp) #define PL_splitstr (vTHX->Isplitstr) #define PL_srand_called (vTHX->Isrand_called) @@ -1049,6 +1053,7 @@ #define PL_preprocess (aTHXo->interp.Ipreprocess) #define PL_profiledata (aTHXo->interp.Iprofiledata) #define PL_psig_name (aTHXo->interp.Ipsig_name) +#define PL_psig_pend (aTHXo->interp.Ipsig_pend) #define PL_psig_ptr (aTHXo->interp.Ipsig_ptr) #define PL_ptr_table (aTHXo->interp.Iptr_table) #define PL_replgv (aTHXo->interp.Ireplgv) @@ -1057,6 +1062,7 @@ #define PL_runops (aTHXo->interp.Irunops) #define PL_sawampersand (aTHXo->interp.Isawampersand) #define PL_sh_path (aTHXo->interp.Ish_path) +#define PL_sig_pending (aTHXo->interp.Isig_pending) #define PL_sighandlerp (aTHXo->interp.Isighandlerp) #define PL_splitstr (aTHXo->interp.Isplitstr) #define PL_srand_called (aTHXo->interp.Isrand_called) @@ -1329,6 +1335,7 @@ #define PL_Ipreprocess PL_preprocess #define PL_Iprofiledata PL_profiledata #define PL_Ipsig_name PL_psig_name +#define PL_Ipsig_pend PL_psig_pend #define PL_Ipsig_ptr PL_psig_ptr #define PL_Iptr_table PL_ptr_table #define PL_Ireplgv PL_replgv @@ -1337,6 +1344,7 @@ #define PL_Irunops PL_runops #define PL_Isawampersand PL_sawampersand #define PL_Ish_path PL_sh_path +#define PL_Isig_pending PL_sig_pending #define PL_Isighandlerp PL_sighandlerp #define PL_Isplitstr PL_splitstr #define PL_Isrand_called PL_srand_called |