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.
有2个进程共享一个文件F,每个io的大小是小于4k的一行
我想知道是否会发生以下情况?
B写了半行,然后A从A读取,发现F的eof被读取了,返回半行。
一次,file只能由一个人process使用。如果您希望它在两个进程之间共享,则必须同步它们。此外,您必须close在第二个进程使用之前保存该文件。
file
process
close