如何在C程序和shell脚本之间使用flock

时间:2013-05-06 00:09:43

标签: c linux shell flock

我有一个shell脚本和一个c程序

    #!/bin/bash
    for i in `seq 1 10000`
    do
    (flock -x 200                   // what is 200?
       ./taskA
    ) 200> lockfile
    done

在C程序中,相关的代码片段为:

    int fd = open("lockfile", O_WRONLY|O_CREAT); // what permission should I put here?
    for(i=0;i<10000;i++){
      if(fd==-1)
            printf("open file fails\n");

      if(flock(fd, LOCK_EX)==0 ){      // lock the file
            taskB(); // here is what I want to do
            }

      if (flock(fd, LOCK_UN)==0)  // after finishing those tasks, unlock it
      {
            printf("C unlock\n");
      }
     }

我想在同一主机上运行shell脚本和C程序 我希望他们可以在不同的时间交替运行taskAtaskB 但我不熟悉flock,因此存在一些权限问题或打开文件失败

例如,如果我运行C程序并让它完成然后再次运行它,我得到 “打开文件失败” 许可是

---xr-x--T 1 esolve 200036    0 May  6 02:18 lockfile

如何修改脚本和代码? 谢谢!

1 个答案:

答案 0 :(得分:1)

shell脚本中的200是文件描述符 - 请参阅flock(1)的手册页。

您的文件权限问题是open(2)包含O_CREAT时需要3个参数;第三个参数应该是文件的权限。如果未指定第三个参数,则会为您选择一些准随机值。需要进行大量分析才能帮助您检测到该问题,因为open(2)具有签名:

#include <fcntl.h>

int open(const char *path, int oflag, ...);

它是一个可变长度的参数列表函数,因此在大多数情况下只使用两个参数就可以了,除了指定O_CREAT时它需要第三个参数。