diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-05-21 09:02:38 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-05-21 09:02:38 +0200 |
commit | d525a7b2081fbd38d70ffb150fc7fe6d30d0b62d (patch) | |
tree | 1e58d21e30ab60df1cdec9aa5c9b09799ccc92a3 /intrpvar.h | |
parent | 708854f2ff3eebc1ddfd657353b5092eae729cb8 (diff) | |
download | perl-d525a7b2081fbd38d70ffb150fc7fe6d30d0b62d.tar.gz |
Use only one block of memory for both PL_psig_name and PL_psig_ptr.
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 3265ac2ccf..7a0526811b 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -537,7 +537,8 @@ PERLVAR(Iparser, yy_parser *) /* current parser state */ signal handler dispatches. */ PERLVAR(Ipsig_ptr, SV**) /* Array of names of signals, indexed by signal number, for (re)use as the first - argument to a signal handler. */ + argument to a signal handler. Only one block of memory is allocated for + both psig_name and psig_ptr. */ PERLVAR(Ipsig_name, SV**) #if defined(PERL_IMPLICIT_SYS) |