summaryrefslogtreecommitdiff
path: root/doio.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-09-17 20:08:00 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-09-17 20:08:00 +0000
commit7211d486c2f1b50ce739944f532a265536a2f0f5 (patch)
treea876de0609f2c96a1cf9839754b4f9c3a564d1e6 /doio.c
parent0eb389d527ba6573736dda38fa906f58756ce9ae (diff)
downloadperl-7211d486c2f1b50ce739944f532a265536a2f0f5.tar.gz
The change #4176 should've undone only the test, not the code patch.
p4raw-link: @4176 on //depot/cfgperl: b7a02c4fb533bb0a7ae92f82a4a660045d95669a p4raw-id: //depot/cfgperl@4179
Diffstat (limited to 'doio.c')
-rw-r--r--doio.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/doio.c b/doio.c
index 793b54059c..0b1cdd1ec4 100644
--- a/doio.c
+++ b/doio.c
@@ -283,8 +283,17 @@ Perl_do_open9(pTHX_ GV *gv, register char *name, I32 len, int as_raw,
}
if (IoIFP(thatio)) {
PerlIO *fp = IoIFP(thatio);
- /* Flush stdio buffer before dup */
+ /* Flush stdio buffer before dup. --mjd
+ * Unfortunately SEEK_CURing 0 seems to
+ * be optimized away on most platforms;
+ * only Solaris and Linux seem to flush
+ * on that. --jhi */
PerlIO_seek(fp, 0, SEEK_CUR);
+ /* On the other hand, do all platforms
+ * take gracefully to flushing a read-only
+ * filehandle? Perhaps we should do
+ * fsetpos(src)+fgetpos(dst)? --nik */
+ PerlIO_flush(fp);
fd = PerlIO_fileno(fp);
if (IoTYPE(thatio) == 's')
IoTYPE(io) = 's';