gpt4 book ai didi

linux - mknod() 不创建命名管道

转载 作者:太空狗 更新时间:2023-10-29 12:29:40 25 4
gpt4 key购买 nike

我正在尝试使用 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;
}

虽然这没有什么区别,但错误仍然存​​在。我是不是做错了什么,还是有某种系统干预导致了这个问题?

帮助..提前致谢

最佳答案

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

The file type for path is OR'ed into the mode argument, and the application shall select one of the following symbolic constants...

试试这个:

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

关于linux - mknod() 不创建命名管道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31459997/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com