diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-14 09:30:18 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-14 09:30:18 +0000 |
commit | 10305dfa3448e78431707a1c294aca0c3710b447 (patch) | |
tree | 7e2f93d3774a5126c7efb1a7fa2e3629566ff3e4 /config_h.SH | |
parent | 211206a5677817f4bf2f48dc780adc95ba310476 (diff) | |
download | perl-10305dfa3448e78431707a1c294aca0c3710b447.tar.gz |
Signal issues.
(1) Filter out negative signals.
(2) Correct sig_num* and sig_name* descriptions.
p4raw-id: //depot/perl@18971
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/config_h.SH b/config_h.SH index 8e16bb8975..7ac00df0f4 100644 --- a/config_h.SH +++ b/config_h.SH @@ -2213,7 +2213,9 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un * etc., where nn is the actual signal number (e.g. NUM37). * The signal number for sig_name[i] is stored in sig_num[i]. * The last element is 0 to terminate the list with a NULL. This - * corresponds to the 0 at the end of the sig_num list. + * corresponds to the 0 at the end of the sig_name_init list. + * Note that this variable is initialized from the sig_name_init, + * not from sig_name (which is unused). */ /* SIG_NUM: * This symbol contains a list of signal numbers, in the same order as the @@ -2227,7 +2229,9 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un * The signal number corresponding to sig_name[i] is sig_number[i]. * if (i < NSIG) then sig_number[i] == i. * The last element is 0, corresponding to the 0 at the end of - * the sig_name list. + * the sig_name_init list. + * Note that this variable is initialized from the sig_num_init, + * not from sig_num (which is unused). */ /* SIG_SIZE: * This variable contains the number of elements of the sig_name |