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 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.

相关文章

/etc/sysctl.conf这个目录主要是配置一些系统信息,/etc/sys...
1.作用 useradd或adduser命令用来建立用户帐号和创建用户的起...
它们都是多模式编辑器,不同的是vim 是vi的升级版本,它不仅...
不管是我们在安装软件还是监测软件的使用性能,我们都要随时...
装好Tomcat7后,发现除了本机能访问外界访问不了,岂有此理。...
修改防火墙配置需要修改 /etc/sysconfig/iptables 这个文件,...