diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-17 03:24:48 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-17 03:24:48 +0000 |
commit | 76d3c696f3f9d8be0bea9b002ddfc255153cfadd (patch) | |
tree | dfee2903009a08674d10fa46c301ae8d7486f839 /vos | |
parent | eabb5a47cfff827abe7f644eb4ce7727ae1159a4 (diff) | |
download | perl-76d3c696f3f9d8be0bea9b002ddfc255153cfadd.tar.gz |
Define SIG_SIZE, the number of elements in the sig_name and
sig_num arrays, including the final NULL entry.
p4raw-id: //depot/perl@8459
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.alpha.def | 1 | ||||
-rw-r--r-- | vos/config.alpha.h | 5 | ||||
-rw-r--r-- | vos/config.ga.def | 1 | ||||
-rw-r--r-- | vos/config.ga.h | 5 |
4 files changed, 12 insertions, 0 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def index 1ec2d9167c..1d19488314 100644 --- a/vos/config.alpha.def +++ b/vos/config.alpha.def @@ -435,6 +435,7 @@ $shmattype='void *' $shortsize='2' $sig_name_init='"ZERO","ABRT","FPE","ILL","INT","SEGV","TERM","USR1","USR2","IO","HUP","URG","ALRM","KILL","PIPE","QUIT","CHLD","CONT","STOP","TSTP","TTIN","TTOU","BUS","RT1","RT2","RT3","RT4","RT5","RT6","RT7","RT8",0' $sig_num_init='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,26,27,28,29,30,0' +$sig_size='32' $signal_t='void' $sitearch='' $sitearchexp='' diff --git a/vos/config.alpha.h b/vos/config.alpha.h index 7b21420a6d..57324d98e7 100644 --- a/vos/config.alpha.h +++ b/vos/config.alpha.h @@ -2918,8 +2918,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","ABRT","FPE","ILL","INT","SEGV","TERM","USR1","USR2","IO","HUP","URG","ALRM","KILL","PIPE","QUIT","CHLD","CONT","STOP","TSTP","TTIN","TTOU","BUS","RT1","RT2","RT3","RT4","RT5","RT6","RT7","RT8",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,26,27,28,29,30,0 /**/ +#define SIG_SIZE 32 /**/ /* SITEARCH: * This symbol contains the name of the private library for this package. diff --git a/vos/config.ga.def b/vos/config.ga.def index ab57e08832..57efb6b691 100644 --- a/vos/config.ga.def +++ b/vos/config.ga.def @@ -435,6 +435,7 @@ $shmattype='void *' $shortsize='2' $sig_name_init='"ZERO","ABRT","FPE","ILL","INT","SEGV","TERM","USR1","USR2","IO","HUP","URG","ALRM","CHLD","CONT","KILL","STOP","PIPE","QUIT","BUS","TRAP","TSTP","TTIN","TTOU","RT1","RT2","RT3","RT4","RT5","RT6","RT7","RT8",0' $sig_num_init='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,26,27,28,29,30,31,0' +$sig_size='32' $signal_t='void' $sitearch='' $sitearchexp='' diff --git a/vos/config.ga.h b/vos/config.ga.h index 2a89a1e3bc..f790bad8c1 100644 --- a/vos/config.ga.h +++ b/vos/config.ga.h @@ -2918,8 +2918,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","ABRT","FPE","ILL","INT","SEGV","TERM","USR1","USR2","IO","HUP","URG","ALRM","CHLD","CONT","KILL","STOP","PIPE","QUIT","BUS","TRAP","TSTP","TTIN","TTOU","RT1","RT2","RT3","RT4","RT5","RT6","RT7","RT8",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,26,27,28,29,30,31,0 /**/ +#define SIG_SIZE 32 /**/ /* SITEARCH: * This symbol contains the name of the private library for this package. |