我正在尝试使用管道创建一个基本的2人聊天程序。如果连接到管道另一端的应用程序被强制关闭,则下面的代码进入无限循环。除管道名称外,第二个程序与此相同。
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <stdio.h>
#include <cstdlib>
#include <pthread.h>
#include <string.h>
#define MAX_BUF 1024
void *th()
{
int fd;
char myfifo[] = "/tmp/myfifo2", buf[MAX_BUF];
fd = open(myfifo, O_RDONLY);
while(buf=="");
while(1)
{
read(fd, buf, MAX_BUF);
printf("Stranger : %s\n", buf);
if(!strcmp(buf,"exit"))
break;
else buf[0]='\0';
}
close(fd);
pthread_exit(NULL);
}
int main()
{
int fd;
char myfifo[] = "/tmp/myfifo", msg[25];
pthread_t thread;
pthread_create(&thread, NULL, th, NULL); //error
mkfifo(myfifo, 0666);
fd = open(myfifo, O_WRONLY);
while(msg!="exit")
{
printf("You : ");
gets(msg);
if(!strcmp(msg,"exit"))
{write(fd, msg, sizeof(msg)); break;}
else write(fd, msg, sizeof(msg));
}
close(fd);
unlink(myfifo);
return 0;
}
如何确保应用程序在强制关闭应用程序时退出?
答案 0 :(得分:1)
您的计划不会检查read()
和write()
的回复。
由于读取失败不会将buf
填入字符串“exit”,因此您的中断条件永远不会发生。