flock锁定文件问题,没人会吗?
以下代码已经测试过#include <stdio.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
main()
{
char a='b';
int fd;
while(a!='a')
{
fd=open("a.txt",O_RDWR|O_NONBLOCK);
printf("lock=%d",flock(fd,LOCK_EX|LOCK_NB));
scanf("%s",&a);
if(a=='a')
{
flock(fd,LOCK_UN);
}
}
}
↑
这是锁文件的测试代码,0代表锁成功,-1代表失败
这是在锁定后对同样的文件进行操作代码
↓
#include <stdio.h>
#include <sys/file.h>
#include <unistd.h>
#include <string.h>
main()
{
int fd;
char a[100] = "dsadsadsa";
if((fd=open("a.txt",O_RDWR|O_NONBLOCK))== -1 )
{
printf("open error!\n");
}
else
{
printf("%d\n",write(fd,&a,strlen(a)));//要是锁定好用应该不能写入东西,write()函数返回写入长度
}
}
问题:
按理来说,2个进程对a.txt进行文件操作,要是文件被锁,应该不能再向其中写入东西~可是第2个程序却显示能写入
是我用错flock了吗?请高人看看,这问题是几天前问的了~
有成功使用过flock过的人请说说你们怎么用的~
[此贴子已经被作者于2007-11-1 16:16:49编辑过]