SYNC(2) | Linux Programmer's Manual | SYNC(2) |
sync, syncfs - ファイルシステムキャッシュをディスクに書き込む
#include <unistd.h>
void sync(void);
int syncfs(int fd);
sync():
syncfs():
sync() causes all pending modifications to filesystem metadata and cached file data to be written to the underlying filesystems.
syncfs() は sync() と同様だが、オープンされたファイルディスクリプター fd が参照するファイルを含むファイルシステムだけを同期する点が異なる。
syncfs() は成功すると 0 を返す。エラーが発生した場合は -1 を返し、 errno にエラーを示す値を設定する。
sync() は常に成功する。
syncfs() は少なくとも以下の理由で失敗する可能性がある:
syncfs() は Linux 2.6.39 で初めて登場した。 ライブラリによるサポートは glibc バージョン 2.14 で追加された。
sync(): POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.
syncfs() is Linux 固有である。
Linux での sync() のプロトタイプは、さまざまな標準規格での規定に準拠し、 glibc 2.2.2 から上述のようになった。 glibc 2.2.1 以前ではプロトタイプは "int sync(void)" で、 sync() は常に 0 を返していた。
According to the standard specification (e.g., POSIX.1-2001), sync() schedules the writes, but may return before the actual writing is done. However Linux waits for I/O completions, and thus sync() or syncfs() provide the same guarantees as fsync() called on every file in the system or filesystem respectively.
In mainline kernel versions prior to 5.8, syncfs() will fail only when passed a bad file descriptor (EBADF). Since Linux 5.8, syncfs() will also report an error if one or more inodes failed to be written back since the last syncfs() call.
Before version 1.3.20 Linux did not wait for I/O to complete before returning.
この man ページは Linux man-pages プロジェクトのリリース 5.10 の一部である。プロジェクトの説明とバグ報告に関する情報は https://www.kernel.org/doc/man-pages/ に書かれている。
2020-08-13 | Linux |