This says to ignore the SIGCHLD signal.
它表示忽略子进程发送的SIGCHLD信号。
When a child process dies, its parent is notified with a signal called SIGCHLD.
当子进程终止时,会使用一个名为SIGCHLD的信号来通知其父进程。
The code in Listing 8 implements a signal handler to deal with the incoming SIGCHLD signal.
清单8中的代码实现了一个处理传入的SIGCHLD信号的信号处理程序。
应用推荐