免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 4911 | 回复: 17
打印 上一主题 下一主题

fsync在什么时候同步数据 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-09-26 10:57 |只看该作者 |倒序浏览
  1. int main()
  2. {
  3.         int fd,byteswrite,bytesread;
  4.         char buf[256];
  5.         int length;
  6.         memset(buf,0,256);
  7.         strcpy(buf,"hello ,this is a test");
  8.         length = strlen(buf);
  9.         fd = creat("test.txt", O_RDWR|0777);
  10.         byteswrite = write (fd,buf,length);
  11.         printf("byteswrite is %d \n",byteswrite);
  12.         if(fsync(fd)==-1)
  13.                 printf("fsync error\n");       
  14.         memset(buf,0,256);       
  15.         bytesread = read(fd,buf,length);
  16.         printf("bytesread is %d \n",bytesread);
  17.         printf("read result is %s\n",buf);
  18. }
复制代码


结果
  1. [lrf@localhost file]$ ./s
  2. byteswrite is 21
  3. bytesread is -1
  4. read result is
  5. [lrf@localhost file]$
复制代码


向文件写数据
然后fsync
然后再读
结果什么都没读到
fsync在什么时候同步数据呢

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2005-09-26 11:06 |只看该作者

fsync在什么时候同步数据

你理解的同步 是个什么概念??

论坛徽章:
0
3 [报告]
发表于 2005-09-26 11:07 |只看该作者

fsync在什么时候同步数据

应该就是立即将缓冲区的内容立即写入磁盘吧

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
4 [报告]
发表于 2005-09-26 11:11 |只看该作者

fsync在什么时候同步数据

恩. 那你为什么还要在文件末尾来读呢??
当然要返回-1了.

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
5 [报告]
发表于 2005-09-26 11:13 |只看该作者

fsync在什么时候同步数据

man lseek

论坛徽章:
0
6 [报告]
发表于 2005-09-26 11:24 |只看该作者

fsync在什么时候同步数据

原帖由 "mq110" 发表:
恩. 那你为什么还要在文件末尾来读呢??
当然要返回-1了.



原来是已经写到了文件尾
多谢 啊

论坛徽章:
0
7 [报告]
发表于 2005-09-26 11:42 |只看该作者

fsync在什么时候同步数据

mq110大哥
不好意思啊
小弟在read前
t=lseek(fd, 0, SEEK_SET);       
printf("t is %d\n",t);

虽然打印了t is 0
但是读的结果还是和刚才上面的一样啊
这是怎么回事呢

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
8 [报告]
发表于 2005-09-26 12:00 |只看该作者

fsync在什么时候同步数据

t=lseek(fd, (-1)*length, SEEK_CUR);
这样呢??

论坛徽章:
0
9 [报告]
发表于 2005-09-26 12:12 |只看该作者

fsync在什么时候同步数据

还是打印了t is 0
read的还是返回-1
但是把文件关了再打开
然后再读就没问题

论坛徽章:
0
10 [报告]
发表于 2005-09-26 12:42 |只看该作者

fsync在什么时候同步数据

NOTES
In case the hard disk has write cache enabled, the data may not really be on permanent storage when fsync/fdatasync return.
When an ext2 file system is mounted with the sync option, directory entries are also implicitly synced by fsync.

On kernels before 2.4, fsync on big files can be inefficient. An alternative might be to use the O_SYNC flag to open(2).
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP