Changeset a56cef9 in mainline for uspace/lib/posix/source/unistd.c


Ignore:
Timestamp:
2017-03-30T21:09:51Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6e5562a
Parents:
67e881c
Message:

Rename fsync() to vfs_sync()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/unistd.c

    r67e881c ra56cef9  
    247247int posix_fsync(int fildes)
    248248{
    249         return negerrno(fsync, fildes);
     249        if (rcerrno(vfs_sync, fildes) != EOK)
     250                return -1;
     251        else
     252                return 0;
    250253}
    251254
Note: See TracChangeset for help on using the changeset viewer.