diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-05-19 17:26:53 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-05-19 17:26:53 +0200 |
commit | c4a30c8caadc1b39ef3c82784b96f0fb96721d71 (patch) | |
tree | 5c49d9c411ce0b7952752e1a78beefb6d4d82c94 /intrpvar.h | |
parent | 3680f2e2de227d39fcfda50b1c3fd7c08ae03800 (diff) | |
download | perl-c4a30c8caadc1b39ef3c82784b96f0fb96721d71.tar.gz |
Document the purpose of PL_psig_ptr and PL_psig_name.
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 4fa3c0d9a3..504a056990 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*) |