summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-07-12 23:22:42 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-07-12 23:22:42 +0000
commitd6483fcc6b9636fb9ad881a6e0c80aace64f8f99 (patch)
treeb646898b871af71b53e38d0abbe98185da059d61 /Porting
parent23ba2776be77727c92aae8a457da21461a9125f3 (diff)
downloadperl-d6483fcc6b9636fb9ad881a6e0c80aace64f8f99.tar.gz
Add HAS_PTHREAD_ATFORK.
p4raw-id: //depot/perl@11334
Diffstat (limited to 'Porting')
-rw-r--r--Porting/Glossary5
-rw-r--r--Porting/config.sh11
-rw-r--r--Porting/config_H8
3 files changed, 18 insertions, 6 deletions
diff --git a/Porting/Glossary b/Porting/Glossary
index 3baf6e6b9b..db66cb917b 100644
--- a/Porting/Glossary
+++ b/Porting/Glossary
@@ -1209,6 +1209,11 @@ d_PRIXU64 (quadfio.U):
The 'U' in the name is to separate this from d_PRIx64 so that even
case-blind systems can see the difference.
+d_pthread_atfork (d_pthread_atfork.U):
+ This variable conditionally defines the HAS_PTHREAD_ATFORK symbol,
+ which indicates to the C program that the pthread_atfork()
+ routine is available.
+
d_pthread_yield (d_pthread_y.U):
This variable conditionally defines the HAS_PTHREAD_YIELD
symbol if the pthread_yield routine is available to yield
diff --git a/Porting/config.sh b/Porting/config.sh
index 37410bdfed..24592e92f0 100644
--- a/Porting/config.sh
+++ b/Porting/config.sh
@@ -8,7 +8,7 @@
# Package name : perl5
# Source directory : .
-# Configuration time: Thu Jul 12 21:13:57 EET DST 2001
+# Configuration time: Fri Jul 13 03:15:46 EET DST 2001
# Configured by : jhi
# Target system : osf1 alpha.hut.fi v4.0 878 alpha
@@ -63,7 +63,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 Jul 12 21:13:57 EET DST 2001'
+cf_time='Fri Jul 13 03:15:46 EET DST 2001'
charsize='1'
chgrp=''
chmod='chmod'
@@ -275,6 +275,7 @@ d_phostname='undef'
d_pipe='define'
d_poll='define'
d_portable='define'
+d_pthread_atfork='define'
d_pthread_yield='undef'
d_pwage='undef'
d_pwchange='undef'
@@ -672,7 +673,7 @@ patchlevel='7'
path_sep=':'
perl5='/u/vieraat/vieraat/jhi/Perl/bin//perl'
perl=''
-perl_patchlevel='11277'
+perl_patchlevel='11326'
perladmin='yourname@yourhost.yourplace.com'
perllibs='-lm -liconv -lutil -lpthread -lexc'
perlpath='/opt/perl/bin/perl'
@@ -840,7 +841,7 @@ vendorlibexp=''
vendorprefix=''
vendorprefixexp=''
version='5.7.1'
-version_patchlevel_string='version 7 subversion 1 patch 11277'
+version_patchlevel_string='version 7 subversion 1 patch 11326'
versiononly='define'
vi=''
voidflags='15'
@@ -873,7 +874,7 @@ PERL_SUBVERSION=1
PERL_API_REVISION=5
PERL_API_VERSION=5
PERL_API_SUBVERSION=0
-PERL_PATCHLEVEL=11277
+PERL_PATCHLEVEL=11326
PERL_CONFIG_SH=true
# Variables propagated from previous config.sh file.
pp_sys_cflags='ccflags="$ccflags -DNO_EFF_ONLY_OK"'
diff --git a/Porting/config_H b/Porting/config_H
index 5c4e8dceb5..6110ca4b20 100644
--- a/Porting/config_H
+++ b/Porting/config_H
@@ -17,7 +17,7 @@
/*
* Package name : perl5
* Source directory : .
- * Configuration time: Thu Jul 12 21:13:57 EET DST 2001
+ * Configuration time: Fri Jul 13 03:15:46 EET DST 2001
* Configured by : jhi
* Target system : osf1 alpha.hut.fi v4.0 878 alpha
*/
@@ -3457,4 +3457,10 @@
*/
#define I_LANGINFO /**/
+/* HAS_PTHREAD_ATFORK:
+ * This symbol, if defined, indicates that the pthread_atfork routine
+ * is available setup fork handlers.
+ */
+#define HAS_PTHREAD_ATFORK /**/
+
#endif