只允许一个程序运行一个实例 代码

本文介绍了一个使用 C 语言实现文件锁的示例程序。该程序通过 open 函数打开指定文件,并利用 fcntl 函数设置文件锁。文章展示了如何定义结构体 flock 来设置不同类型的文件锁,包括读锁、写锁及解锁。

#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <errno.h>

int main()
{
int fd,val;
struct flock lock;

fd=open("/home/lwd/a.txt",O_RDWR | O_CREAT | O_TRUNC );
if(fd<0)
{
  printf("open file error,%s\n",strerror(errno));

  return 1;
}

if ( (val = fcntl(fd, F_GETFL, 0)) < 0)
{
  printf("fcntl F_GETFL error\n");
  return 2;
}
   
lock.l_type = F_WRLCK;     /* F_RDLCK, F_WRLCK, F_UNLCK */
    lock.l_start = 0;  /* byte offset, relative to l_whence */
    lock.l_whence = SEEK_SET; /* SEEK_SET, SEEK_CUR, SEEK_END */
    lock.l_len = 0;       /* #bytes (0 means to EOF) */

if(fcntl(fd, F_SETLK, &lock)<0)
{
  printf("fcntl F_SETFL error\n");
  return 3;
}

sleep(30);

printf("it is over\n");

close(fd);

return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值