有关 “Unix信号不排队”的问题

题目描述

在《CSAPP》中有一个简单的signal示例程序。我在Ubuntu里编译运行相同的代码,得到的结果和书上给出的结果不一样,并且就是在最关键的一个地方不一样:信号不排队。

clipboard.png

而我在自己的机器上编译运行结果:

clipboard.png

按照书里面的说法,Handler reaped child 这一项应该只出现两次。

相关代码

#include "csapp.h"
/* $begin signal1 */
/* WARNING: This code is buggy! */

void handler1(int sig) 
{
    int olderrno = errno;

    if ((waitpid(-1, NULL, 0)) < 0)
        sio_error("waitpid error");
    Sio_puts("Handler reaped child\n");
    Sleep(1);
    errno = olderrno;
}

int main() 
{
    int i, n;
    char buf[MAXBUF];

    if (signal(SIGCHLD, handler1) == SIG_ERR)
        unix_error("signal error");

    /* Parent creates children */
    for (i = 0; i < 3; i++) {
        if (Fork() == 0) {
            printf("Hello from child %d\n", (int)getpid());
            exit(0);
        }
    }

    /* Parent waits for terminal input and then processes it */
    if ((n = read(STDIN_FILENO, buf, sizeof(buf))) < 0)
        unix_error("read");

    printf("Parent processing input\n");
    while (1)
        ;

    exit(0);
}
/* $end signal1 */
阅读 2.6k
1 个回答
新手上路,请多包涵

需要修改一下代码

/* Parent creates children */
for (i = 0; i < 3; i++) {
    if (Fork() == 0) {
        printf("Hello from child %d\n", (int)getpid());
        sleep(3);
        exit(0);
    }
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进