我创建了一个名为“readmsg”的可执行文件。其源代码如下。如果我只在shell中执行select(),则readmsg有效(我可以看到timeout的输出)。
但如果我通过command:mknod /tmp/message p创建一个FIFO文件,并在shell中执行readmsg < /tmp/message。结果,如果我不在select()中写东西,/tmp/message就不能返回。我的问题是:为什么我不能得到timeout输出?
“readmsg”的源代码:

    #define STDIN 0
    fd_set fds;
    struct timeval tv;
    while (1) {
        FD_ZERO(&fds);
        FD_SET(STDIN, &fds);
        tv.tv_sec = 1;
        tv.tv_usec = 0;
        ret = select(STDIN + 1, &fds, NULL, NULL, &tv);
        if (ret > 0) {
            printf("works\n");
            if (FD_ISSET(STDIN, &fds)) {
                // read ...
            }
        } else if (ret == 0) {
            printf("timeout!!\n");
        } else {
            printf("interrupt\n");
        }
    }

最佳答案

谢谢@Mat。将printf()添加到接近main()的位置后,也没有输出。即使在执行readmsg时也没有ps的进程id。
因此它证明了在FIFO准备好写入之前,readmsg < /tmp/message的进程被阻塞。
没有任何错误。事实上,readmsg在从重定向的FIFO文件读取消息时工作良好。

关于c - select()在超时后不返回,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14302579/

10-12 22:39