summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-05-19 17:26:53 +0200
committerNicholas Clark <nick@ccl4.org>2009-05-19 17:26:53 +0200
commitc4a30c8caadc1b39ef3c82784b96f0fb96721d71 (patch)
tree5c49d9c411ce0b7952752e1a78beefb6d4d82c94 /intrpvar.h
parent3680f2e2de227d39fcfda50b1c3fd7c08ae03800 (diff)
downloadperl-c4a30c8caadc1b39ef3c82784b96f0fb96721d71.tar.gz
Document the purpose of PL_psig_ptr and PL_psig_name.
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h6
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*)