In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/c4a30c8caadc1b39ef3c82784b96f0fb96721d71?hp=3680f2e2de227d39fcfda50b1c3fd7c08ae03800>
- Log ----------------------------------------------------------------- commit c4a30c8caadc1b39ef3c82784b96f0fb96721d71 Author: Nicholas Clark <n...@ccl4.org> Date: Tue May 19 17:26:53 2009 +0200 Document the purpose of PL_psig_ptr and PL_psig_name. ----------------------------------------------------------------------- Summary of changes: intrpvar.h | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/intrpvar.h b/intrpvar.h index 4fa3c0d..504a056 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -535,8 +535,12 @@ PERLVAR(Iparser, yy_parser *) /* current parser state */ PERLVAR(Ibitcount, char *) +/* Array of signal handlers, indexed by signal number, through which the C + signal handler dispatches. */ PERLVAR(Ipsig_ptr, SV**) -PERLVAR(Ipsig_name, SV**) +/* Array of names of signals, indexed by signal number, for (re)use as the first + argument to a signal handler. */ +PERLVAR(Ipsig_name, SV**) #if defined(PERL_IMPLICIT_SYS) PERLVAR(IMem, struct IPerlMem*) -- Perl5 Master Repository