- 论坛徽章:
- 0
|
- int main()
- {
- int fd,byteswrite,bytesread;
- char buf[256];
- int length;
- memset(buf,0,256);
- strcpy(buf,"hello ,this is a test");
- length = strlen(buf);
- fd = creat("test.txt", O_RDWR|0777);
- byteswrite = write (fd,buf,length);
- printf("byteswrite is %d \n",byteswrite);
- if(fsync(fd)==-1)
- printf("fsync error\n");
- memset(buf,0,256);
- bytesread = read(fd,buf,length);
- printf("bytesread is %d \n",bytesread);
- printf("read result is %s\n",buf);
- }
复制代码
结果- [lrf@localhost file]$ ./s
- byteswrite is 21
- bytesread is -1
- read result is
- [lrf@localhost file]$
复制代码
向文件写数据
然后fsync
然后再读
结果什么都没读到
fsync在什么时候同步数据呢 |
|