summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-05-08 16:21:33 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-05-08 16:21:33 +0000
commitbd026c32438ec68a31fc6a7281cbf547c5a94cb4 (patch)
tree248732939efc3fb7628de8b996e725c8541f7c54 /Porting
parent0e032a1475d1a4a03404d2ba818b180356b8a19d (diff)
downloadperl-bd026c32438ec68a31fc6a7281cbf547c5a94cb4.tar.gz
Introduce NV_PRESERVED_BITS. Not yet used anywhere but
might be useful in future. p4raw-id: //depot/cfgperl@6095
Diffstat (limited to 'Porting')
-rw-r--r--Porting/Glossary4
-rw-r--r--Porting/config.sh5
-rw-r--r--Porting/config_H4
3 files changed, 9 insertions, 4 deletions
diff --git a/Porting/Glossary b/Porting/Glossary
index dbee4e66a9..1d6b1881ae 100644
--- a/Porting/Glossary
+++ b/Porting/Glossary
@@ -1007,6 +1007,10 @@ d_nice (d_nice.U):
This variable conditionally defines the HAS_NICE symbol, which
indicates to the C program that the nice() routine is available.
+d_nv_preserved_bits (perlxv.U):
+ This variable indicates how many of bits type uvtype
+ a variable nvtype can preserve.
+
d_nv_preserves_uv (perlxv.U):
This variable indicates whether a variable of type nvtype
can preserve all the bits a variable of type uvtype.
diff --git a/Porting/config.sh b/Porting/config.sh
index f2f659cddb..1da4de3489 100644
--- a/Porting/config.sh
+++ b/Porting/config.sh
@@ -8,7 +8,7 @@
# Package name : perl5
# Source directory : .
-# Configuration time: Sun May 7 18:54:35 EET DST 2000
+# Configuration time: Mon May 8 19:17:48 EET DST 2000
# Configured by : jhi
# Target system : osf1 alpha.hut.fi v4.0 878 alpha
@@ -59,7 +59,7 @@ ccflags='-pthread -std -DLANGUAGE_C'
ccsymbols='__alpha=1 __LANGUAGE_C__=1 __osf__=1 __unix__=1 _LONGLONG=1 _SYSTYPE_BSD=1 SYSTYPE_BSD=1 unix=1'
cf_by='jhi'
cf_email='yourname@yourhost.yourplace.com'
-cf_time='Sun May 7 18:54:35 EET DST 2000'
+cf_time='Mon May 8 19:17:48 EET DST 2000'
charsize='1'
chgrp=''
chmod=''
@@ -243,6 +243,7 @@ d_msync='define'
d_munmap='define'
d_mymalloc='undef'
d_nice='define'
+d_nv_preserved_bits='53'
d_nv_preserves_uv='undef'
d_off64_t='undef'
d_old_pthread_create_joinable='undef'
diff --git a/Porting/config_H b/Porting/config_H
index e5ba0d8f42..17afce53f6 100644
--- a/Porting/config_H
+++ b/Porting/config_H
@@ -17,7 +17,7 @@
/*
* Package name : perl5
* Source directory : .
- * Configuration time: Sun May 7 18:54:35 EET DST 2000
+ * Configuration time: Mon May 8 19:17:48 EET DST 2000
* Configured by : jhi
* Target system : osf1 alpha.hut.fi v4.0 878 alpha
*/
@@ -2652,7 +2652,7 @@
*/
/* NV_PRESERVES_UV:
* This symbol, if defined, indicates that a variable of type NVTYPE
- * can preserve all the bit of a variable of type UVSIZE.
+ * can preserve all the bits of a variable of type UVTYPE.
*/
#define IVTYPE long /**/
#define UVTYPE unsigned long /**/