30 lines
551 B
C
30 lines
551 B
C
#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;
|
|
} |