将缓冲区数据写回磁盘
sync
#include<unistd.h>
int fsync(int fd);
fsync()负责将参数fd所指的文件数据,由系统缓冲区写回磁盘,以确保数据同步。
成功则返回0,失败返回-1,errno为错误代码。