我正在为 IPC 使用 FIFO。然而,他们执行一些奇怪的行为。至于演示,我在这里发布了一些可以编译和运行的代码。附加信息,我在 Linux Ubuntu 上,带有基本的 g++ 编译器,没什么特别的。
#include <iostream>
#include <sys/stat.h>
#include <stdio.h>
#include <fcntl.h>
#include <iostream>
using namespace std;
int main() {
cout << "START" << endl;
int fifo;
int code;
mkfifo("/tmp/FIFO", 666);
if ((fifo = open("/tmp/FIFO", O_RDONLY | O_NONBLOCK)) < 0) {
perror("open failed");
}
else {
cout << "open successed" << endl;
code = close(fifo);
cout << "close: " << code << endl;
if ((fifo = open("/tmp/FIFO", O_WRONLY | O_NONBLOCK)) < 0) {
perror("reopen failed");
}
else {
cout << "reopen successed" << endl;
code = close(fifo);
cout << "close: " << code << endl;
}
}
cout << "END" << endl;
return 0;
}
我对输出的期望是这样的,因为我成功关闭了它:
START
open successed
close: 0
reopen successed
close: 0
END
但是,我得到了这个,第二次打开失败。为什么?为什么会有这个愚蠢的错误信息?
START
open successed
close: 0
reopen failed: No such device or address
END
我真的很想重新打开 FIFO 进行写入。而且我想知道上面的代码不起作用的原因。