diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-01-18 21:48:02 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-01-18 21:48:02 +0000 |
commit | 66fe0623488f98a7806a1e9f1451648932318696 (patch) | |
tree | a5e1b34f7a1512e317a700e428ff20e9058a8441 /win32/config_H.bc | |
parent | 0a8e0eff0300ee74cef43b18ff11d05a6376450e (diff) | |
download | perl-66fe0623488f98a7806a1e9f1451648932318696.tar.gz |
Win32 "safe signals" co-existance fix.
Fix SIG_SIZE value.
Clear PL_sig_pending when cloning (fork).
p4raw-id: //depot/perlio@8475
Diffstat (limited to 'win32/config_H.bc')
-rw-r--r-- | win32/config_H.bc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/win32/config_H.bc b/win32/config_H.bc index ca1d1ab0d7..948dbd5cbe 100644 --- a/win32/config_H.bc +++ b/win32/config_H.bc @@ -13,7 +13,7 @@ /* * Package name : perl5 * Source directory : - * Configuration time: Sat Jan 13 11:33:17 2001 + * Configuration time: Thu Jan 18 14:54:24 2001 * Configured by : nick * Target system : */ @@ -2933,8 +2933,13 @@ * The last element is 0, corresponding to the 0 at the end of * the sig_name list. */ +/* SIG_SIZE: + * This variable contains the number of elements of the sig_name + * and sig_num arrays, including the final NULL entry. + */ #define SIG_NAME "ZERO", "NUM01", "INT", "QUIT", "ILL", "NUM05", "NUM06", "NUM07", "FPE", "KILL", "NUM10", "SEGV", "NUM12", "PIPE", "ALRM", "TERM", "USR1", "USR2", "CHLD", "NUM19", "USR3", "BREAK", "ABRT", "STOP", "NUM24", "CONT", "CLD", 0 /**/ #define SIG_NUM 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 18, 0 /**/ +#define SIG_SIZE 27 /**/ /* SITEARCH: * This symbol contains the name of the private library for this package. |