我创建了fifo,尝试写入:echo "text" > myfifo
并用我的程序阅读它。
但是,当我写入fifo时,什么都没有显示。
我尝试过很多选项,关闭并开启NON_BLOCK
模式等等,但似乎没有任何帮助。
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
int main (int argc, char **argv)
{
int c;
int tab[argc/2];//decriptors
int i=0;
while ((c = getopt (argc, argv, "f:")) != -1) {
switch (c) {
case 'f':
if (tab[i] = open(optarg, O_RDONLY| O_NONBLOCK) == -1) {
perror(optarg);
abort();
}
//dup(tab[i]);
//printf(":::::%d==== %s\n",555,optarg);
i++;
break;
default:
abort();
}
}
printf("----------------------\n");
char cTab[10];
int charsRead;
for(int j=0;j<=i;j++)
{
charsRead = read(tab[j], cTab, 10);
printf(" ==%d+++%s\n",tab[j],cTab);
//write(tab[j],cTab,10);
}
for(int j=0;j<i;j++)
{
close(tab[j]);
}
答案 0 :(得分:0)
此
if (tab[i] = open(optarg, O_RDONLY| O_NONBLOCK) == -1) {
需要
if ((tab[i] = open(optarg, O_RDONLY)) == -1) {
(可能不需要O_NONBLOCK标志,但您最严重的错误是您将布尔结果(0或1;而不是文件描述符)分配给tab[i]
)
最后但并非最不重要的,
printf(" ==%d+++%s\n",tab[j],cTab);
要工作,你需要在你读到的最后一个字符后加上一个空字符:
if(charsRead >= 0)
cTab[charsRead] = 0;
(另外你需要确保终止null的空间总是:要么是9个字符,要么为数组分配11个。)