summaryrefslogtreecommitdiff
path: root/ext/POSIX/POSIX.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-01-22 21:00:59 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-01-22 21:00:59 +0000
commitf0709b241ca4633837a71ebb25b49d6477a9b61f (patch)
treea445bb84820307fc268b8a3d124b9fe8277e0ba9 /ext/POSIX/POSIX.pod
parent0555b2b0658b3543d19d3fed65724628f43e0191 (diff)
downloadperl-f0709b241ca4633837a71ebb25b49d6477a9b61f.tar.gz
Fix [perl #19860] by adding a POSIX::fsync() stub.
p4raw-id: //depot/perl@18569
Diffstat (limited to 'ext/POSIX/POSIX.pod')
-rw-r--r--ext/POSIX/POSIX.pod4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/POSIX/POSIX.pod b/ext/POSIX/POSIX.pod
index 4d1ded6d56..dd2071bfb4 100644
--- a/ext/POSIX/POSIX.pod
+++ b/ext/POSIX/POSIX.pod
@@ -465,6 +465,10 @@ Perl's builtin C<stat> function.
$fd = POSIX::open( "foo", &POSIX::O_RDONLY );
@stats = POSIX::fstat( $fd );
+=item fsync
+
+Use method C<IO::Handle::sync()> instead.
+
=item ftell
Use method C<IO::Seekable::tell()> instead, or see L<perlfunc/tell>.