mknod()没有创建命名管道

时间:2015-07-16 16:41:56

标签: linux system-calls unlink mknod

我正在尝试使用mknod()命令创建一个名为FIFO的管道:

int main() {
char* file="pipe.txt";
int state;
state = mknod(file, S_IFIFO & 0777, 0);
printf("%d",state);
return 0;
}

但是我的当前目录中没有创建该文件。我尝试按ls -l列出它。状态返回-1。

我在这里和其他网站上发现了类似的问题,我尝试了大多数建议的解决方案:

int main() {
char* file="pipe.txt";
int state;
unlink(file);
state = mknod(file, S_IFIFO & 0777, 0);
printf("%d",state);
return 0;
}

这没有任何区别,但错误仍然存​​在。我在这里做错了什么,或者是否存在导致此问题的某种系统干预?

帮助..提前致谢

1 个答案:

答案 0 :(得分:1)

您正在使用&来设置文件类型而不是|。来自文档:

  

路径的文件类型被OR进入模式参数,并且   申请应选择以下符号之一   常数...

试试这个:

state = mknod(file, S_IFIFO | 0777, 0);

因为这有效:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>


int main() {
    char* file="pipe.txt";
    int state;
    unlink(file);
    state = mknod(file, S_IFIFO | 0777, 0);
    printf("state %d\n", state);
    return 0;
}

编译:

gcc -o fifo fifo.c

运行它:

$ strace -e trace=mknod ./fifo
mknod("pipe.txt", S_IFIFO|0777)         = 0
state 0
+++ exited with 0 +++

查看结果:

$ ls -l pipe.txt
prwxrwxr-x. 1 lars lars 0 Jul 16 12:54 pipe.txt