- 论坛徽章:
- 0
|
请教关于signal的问题
sighandler_t signal (int signum, sighandler_t action)
The signal function establishes action as the action for the signal signum.
The second argument, action, specifies the action to use for the signal signum. This can be one of the following:
SIG_DFL
SIG_DFL specifies the default action for the particular signal. The default actions for various kinds of signals are stated in Standard Signals.
SIG_IGN
SIG_IGN specifies that the signal should be ignored.
比如忽略SIGCHLD信号
signal(SIGCHLD, SIG_IGN); |
|