0

我正在尝试使用管道创建一个基本的 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;
}

我的输出:

输出

如何确保应用程序在强制关闭应用程序时退出?

4

1 回答 1

1

您的程序不检查read()and的返回write()

由于读取失败不会buf用字符串“exit”填充,因此您的中断条件永远不会发生。

于 2013-09-01T16:00:09.380 回答