Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 unix 中,何时ProcessA从 读取FileX,如果ProcessB尝试删除FileX. 这会导致死锁FileX吗?
ProcessA
FileX
ProcessB
维基说了一些东西..我无法为这个简单的问题找到答案..
提前致谢。
不可以。您可以在另一个进程正在读取文件时删除它。默认情况下没有锁定。
例如
$ touch a $ tail -f a
在另一个提示中
$ rm a