导航菜单

sigchld是什么意思_翻译中文_怎么读

sigchld

网络释义:子进程退出;子进程的退出信号;父进程响应

网络释义

1.子进程退出

3.父进程响应 ... SIGXRES x 忽略 超过资源限制 SIGCHLD 子进程暂停或终止 SIGCONT 子进程继续运行 ...

例句释义:,子进程退出,子进程的退出信号,父进程响应

1.The signal handler is called with a value of 18 (SIGCHLD), the child's exit is acknowledged, and the parent goes back to its sleep(60).然后使用值18(SIGCHLD)来调用信号处理程序,确认子进程的退出,并且父进程返回到sleep(60)。

2.When a process terminates, either normally or abnormally , the kernel notifies the parent by sending the SIGCHLD signal to the parent.当一个进程,不管它是正常退出还是异常退出时,内核都会通过发送信号SIGCHLD到其父进程的方式来通知其父进程。

3.When a child process dies, its parent is notified with a signal called SIGCHLD.当子进程终止时,会使用一个名为SIGCHLD的信号来通知其父进程。

4.For the SIGCHLD signal, the apppcation must call the wait(3c) function to wait for the child process to exit.对于SIGCHLD信号,应用程序必须调用wait(3c)函数,以等待子进程退出。

5.The first trap command causes the stopsleep function to be run whenever a SIGCHLD, SIGINT, or SIGTERM signal is received.第一个trap命令将使stopsleep函数在接受到SIGCHLD、SIGINT或SIGTERM信号时运行。

6.The code in Listing 8 implements a signal handler to deal with the incoming SIGCHLD signal.清单8中的代码实现了一个处理传入的SIGCHLD信号的信号处理程序。

7.This says to ignore the SIGCHLD signal.它表示忽略子进程发送的SIGCHLD信号。