summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-11-12 19:00:01 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-12 19:00:01 +0000
commit411ab01cfe8d3e519f9d6ca02e689da8f7724fd9 (patch)
tree5ef608444e22b502de240d1afed31032905366a5 /Porting
parentefdf3af0101f6674227449ca5d7f23c6fc6c46e5 (diff)
downloadperl-411ab01cfe8d3e519f9d6ca02e689da8f7724fd9.tar.gz
Add HAS_FSYNC, lack noticed by Nicholas Clark.
p4raw-id: //depot/perl@7653
Diffstat (limited to 'Porting')
-rw-r--r--Porting/Glossary4
-rw-r--r--Porting/config.sh5
-rw-r--r--Porting/config_H9
3 files changed, 15 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary
index 9e17565dda..136977290f 100644
--- a/Porting/Glossary
+++ b/Porting/Glossary
@@ -614,6 +614,10 @@ d_fstatvfs (d_statvfs.U):
This variable conditionally defines the HAS_FSTATVFS symbol, which
indicates to the C program that the fstatvfs() routine is available.
+d_fsync (d_fsync.U):
+ This variable conditionally defines the HAS_FSYNC symbol, which
+ indicates to the C program that the fsync() routine is available.
+
d_ftello (d_ftello.U):
This variable conditionally defines the HAS_FTELLO symbol, which
indicates to the C program that the ftello() routine is available.
diff --git a/Porting/config.sh b/Porting/config.sh
index 88f3851c79..e7d0a4ee01 100644
--- a/Porting/config.sh
+++ b/Porting/config.sh
@@ -8,7 +8,7 @@
# Package name : perl5
# Source directory : /m/fs/work/work/permanent/perl/pp4/perl
-# Configuration time: Sat Nov 11 18:52:36 EET 2000
+# Configuration time: Sun Nov 12 20:54:32 EET 2000
# 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='Sat Nov 11 18:52:36 EET 2000'
+cf_time='Sun Nov 12 20:54:32 EET 2000'
charsize='1'
chgrp=''
chmod=''
@@ -161,6 +161,7 @@ d_fseeko='undef'
d_fsetpos='define'
d_fstatfs='define'
d_fstatvfs='define'
+d_fsync='define'
d_ftello='undef'
d_ftime='undef'
d_getcwd='define'
diff --git a/Porting/config_H b/Porting/config_H
index d60b970d97..e313377a58 100644
--- a/Porting/config_H
+++ b/Porting/config_H
@@ -17,7 +17,7 @@
/*
* Package name : perl5
* Source directory : /m/fs/work/work/permanent/perl/pp4/perl
- * Configuration time: Sat Nov 11 18:52:36 EET 2000
+ * Configuration time: Sun Nov 12 20:54:32 EET 2000
* Configured by : jhi
* Target system : osf1 alpha.hut.fi v4.0 878 alpha
*/
@@ -3198,4 +3198,11 @@
*/
#define FCNTL_CAN_LOCK /**/
+/* HAS_FSYNC:
+ * This symbol, if defined, indicates that the fsync routine is
+ * available to write a file's modified data and attributes to
+ * permanent storage.
+ */
+#define HAS_FSYNC /**/
+
#endif