加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Linux > 正文

linux – 实现可移植文件锁定机制

发布时间:2020-12-14 02:19:38 所属栏目:Linux 来源:网络整理
导读:我已经实现了一个文件锁定机制,沿着 linux手册页中“open”的建议,其中指出: Portable programs that want to perform atomic file locking using a lockfile,and need to avoid reliance on NFS support for O_EXCL,can create a unique file on the same
我已经实现了一个文件锁定机制,沿着 linux手册页中“open”的建议,其中指出:

Portable programs that want to perform atomic file locking using a
lockfile,and need to avoid reliance on NFS support for O_EXCL,can
create a unique file on the same file system (e.g.,incorporating
hostname and PID),and use link(2) to make a link to the lockfile. If
link(2) returns 0,the lock is successful. Otherwise,use stat(2) on
the unique file to check if its link count has increased to 2,in
which case the lock is also successful.

这似乎工作得很好,但是为了在我的测试中获得100%的代码覆盖率,我需要覆盖链接数增加到2的情况.

我已经尝试过谷歌搜索了,但我似乎能找到的所有内容都是上面反复出现的“它完成的方式”.

任何人都可以向我解释一下哪种情况会导致链接失败(返回-1),但链接数增加到2?

解决方法

您可以在 Linux程序员手册的链接(2)页面底部找到您的问题的答案:
On NFS file systems,the return code may  be  wrong  in  case  the  NFS
   server  performs  the link creation and dies before it can say so.  Use
   stat(2) to find out if the link got created.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读