写进程
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
void writefifo()
{
char buf[128];
memset(buf, 0, sizeof(buf));
int fd = open("fifo", O_WRONLY);
if (fd == -1)
{
printf("error is %s\n", strerror(errno));
}
while (1)
{
scanf("%s", buf);
if (buf[0] == '0')
break;
write(fd, buf, sizeof(buf));
//memset(buf, 0, sizeof(buf));
}
close(fd);
}
int main(void)
{
writefifo();
return EXIT_SUCCESS;
}读进程
void listenfifo()
{
int len = 0;
char buf[128];
memset(buf, 0, sizeof(buf));
int fd = open("fifo", O_RDONLY);
if (fd == -1)
{
printf("error is %s\n", strerror(errno));
}
while ((len = read(fd, buf, sizeof(buf))) > 0)
{
printf("%s\n", buf);
//memset(buf, 0, sizeof(buf));
}
close(fd);
}
int main(void)
{
listenfifo();
return EXIT_SUCCESS;
}
本文提供了一个使用FIFO进行进程间通信的示例代码,包括写进程与读进程的具体实现方式,展示了如何通过FIFO在两个进程间发送和接收消息。
1830

被折叠的 条评论
为什么被折叠?



