logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface

Application Usage

       Note that even if the file descriptor is not open for writing, if there are any pending write requests on
       the underlying file, then that I/O will be completed prior to the return of fdatasync().

Description

       The  fdatasync()  function  shall  force  all  currently  queued  I/O operations associated with the file
       indicated by file descriptor fildes to the synchronized I/O completion state.

       The functionality shall be equivalent to fsync() with the symbol _POSIX_SYNCHRONIZED_IO defined, with the
       exception that all I/O operations shall be completed as  defined  for  synchronized  I/O  data  integrity
       completion.

Errors

       The fdatasync() function shall fail if:

       EBADF  The fildes argument is not a valid file descriptor.

       EINVAL This implementation does not support synchronized I/O for this file.

       In  the  event  that any of the queued I/O operations fail, fdatasync() shall return the error conditions
       defined for read() and write().

       Thefollowingsectionsareinformative.

Examples

       None.

Future Directions

       None.

Name

       fdatasync — synchronize the data of a file (REALTIME)

Prolog

       This  manual  page  is part of the POSIX Programmer's Manual.  The Linux implementation of this interface
       may differ (consult the corresponding Linux manual page for details of Linux behavior), or the  interface
       may not be implemented on Linux.

Rationale

       None.

Return Value

       If  successful,  the  fdatasync() function shall return the value 0; otherwise, the function shall return
       the value -1 and set errno to indicate the error. If the  fdatasync()  function  fails,  outstanding  I/O
       operations are not guaranteed to have been completed.

See Also

aio_fsync(), fcntl(), fsync(), open(), read(), write()

       The Base Definitions volume of POSIX.1‐2017, <unistd.h>

Synopsis

       #include <unistd.h>

       int fdatasync(int fildes);

See Also