qfedu-linux-advanced-level/day4/fifo_write.c

30 lines
551 B
C
Raw Permalink Normal View History

2023-08-17 19:22:02 +08:00
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
int main()
{
// 创建 fifo 的有名(文件名)管道
if (mkfifo("myfifo", 0755) != 0)
{
if (errno != EEXIST)
{
perror("mkfifo");
return 1;
}
}
printf("准备以只写方式打开 myfifo\n");
int fd = open("myfifo", O_WRONLY);
printf("open myfifo fd = %d\n", fd);
sleep(3); // 阻塞 5 秒
close(fd);
return 0;
}