SIG_DFL, SIG_IGN
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <signal.h> 中定义
|
||
#define SIG_DFL /*implementation defined*/ |
||
#define SIG_IGN /*implementation defined*/ |
||
SIG_DFL和SIG_IGN宏扩展到积分表达式不等于任何函数的地址。宏定义信号处理策略signal()功能.
原文:
The SIG_DFL and SIG_IGN macros expand into integral expressions that are not equal to an address of any function. The macros define signal handling strategies for signal() function.
常数
|
Explanation |
SIG_DFL
|
默认信号处理
|
SIF_IGN
|
信号被忽略
|
[编辑] 另请参阅
C++ documentation for SIG_DFL, SIG_IGN
|