- 论坛徽章:
- 0
|
哈哈 你是XD的吧 是哪个?
lock.c lock.h 在老师给的源代码里面有阿
其实就是用创建文件的原子操作的原理
lock.c里面有三个函数
/*************************************
*
* 初始化餐叉文件,保证在程序开始前,
* 餐叉文件不存在
*
**************************************/
void initlock(const char *lockfile)
{
unlink(lockfile);
}
/*************************************
*
* 为餐叉文件上锁
*
**************************************/
void lock(const char *lockfile)
{
int fd;
while ( (fd = open(lockfile, O_RDONLY | O_CREAT | O_EXCL, FILE_MODE)) < 0)
sleep(1);
close(fd);
}
/*************************************
*
* 解除餐叉文件的锁
*
**************************************/
void unlock(const char *lockfile)
{
unlink(lockfile);
} |
|