diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-12 19:05:27 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-12 19:05:27 +0000 |
commit | 983dbef61c17529a7ab294e05f4421fd5b1e2a3a (patch) | |
tree | 61e464c1ec4f70d15ed82a7dea5605a7314832b8 /Porting | |
parent | 1e94dd5d9877f4e97f6cf59a5dc1356a3e20457b (diff) | |
download | perl-983dbef61c17529a7ab294e05f4421fd5b1e2a3a.tar.gz |
Add sigprocmask() probe, regen Configure, regen toc.
p4raw-id: //depot/perl@8421
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 11 | ||||
-rw-r--r-- | Porting/config.sh | 11 | ||||
-rw-r--r-- | Porting/config_H | 11 |
3 files changed, 23 insertions, 10 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 0095ef18c0..5800202e69 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -1449,6 +1449,11 @@ d_sigaction (d_sigaction.U): This variable conditionally defines the HAS_SIGACTION symbol, which indicates that the Vr4 sigaction() routine is available. +d_sigprocmask (d_sigprocmask.U): + This variable conditionally defines HAS_SIGPROCMASK + if sigprocmask() is available to examine or change the signal mask + of the calling process. + d_sigsetjmp (d_sigsetjmp.U): This variable conditionally defines the HAS_SIGSETJMP symbol, which indicates that the sigsetjmp() routine is available to @@ -2444,9 +2449,9 @@ intsize (intsize.U): indicates to the C program how many bytes there are in an int. issymlink (issymlink.U): - This variable holds the switch of the test command to test - for a symbolic link (if they are supported). Typical values - include '-h' and '-L'. + This variable holds the test command to test for a symbolic link + (if they are supported). Typical values include 'test -h' and + 'test -L'. ivdformat (perlxvf.U): This variable contains the format string used for printing diff --git a/Porting/config.sh b/Porting/config.sh index 90e7dc5218..265e04b92d 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -7,8 +7,8 @@ # # Package name : perl5 -# Source directory : /m/fs/work/work/permanent/perl/pp4/perl -# Configuration time: Thu Dec 21 18:13:27 EET 2000 +# Source directory : . +# Configuration time: Fri Jan 12 18:21:55 EET 2001 # Configured by : jhi # Target system : osf1 alpha.hut.fi v4.0 878 alpha @@ -62,7 +62,7 @@ ccsymbols='__alpha=1 __LANGUAGE_C__=1 __osf__=1 __unix__=1 _LONGLONG=1 _SYSTYPE_ ccversion='V5.6-082' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Thu Dec 21 18:13:27 EET 2000' +cf_time='Fri Jan 12 18:21:55 EET 2001' charsize='1' chgrp='' chmod='' @@ -329,6 +329,7 @@ d_shmctl='define' d_shmdt='define' d_shmget='define' d_sigaction='define' +d_sigprocmask='define' d_sigsetjmp='define' d_socket='define' d_socklen_t='undef' @@ -547,7 +548,7 @@ installvendorarch='' installvendorbin='' installvendorlib='' intsize='4' -issymlink='-h' +issymlink='test -h' ivdformat='"ld"' ivsize='8' ivtype='long' @@ -724,7 +725,7 @@ socksizetype='int' sort='sort' spackage='Perl5' spitshell='cat' -src='/m/fs/work/work/permanent/perl/pp4/perl' +src='.' ssizetype='ssize_t' startperl='#!/opt/perl/bin/perl' startsh='#!/bin/sh' diff --git a/Porting/config_H b/Porting/config_H index 039ed258dc..da0b0adcca 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -16,8 +16,8 @@ /* * Package name : perl5 - * Source directory : /m/fs/work/work/permanent/perl/pp4/perl - * Configuration time: Thu Dec 21 18:13:27 EET 2000 + * Source directory : . + * Configuration time: Fri Jan 12 18:21:55 EET 2001 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -3237,4 +3237,11 @@ #define PERL_XS_APIVERSION "5.7.0" #define PERL_PM_APIVERSION "5.005" +/* HAS_SIGPROCMASK: + * This symbol, if defined, indicates that the sigprocmask + * system call is available to examine or change the signal mask + * of the calling process. + */ +#define HAS_SIGPROCMASK /**/ + #endif |