raise
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <signal.h> 中定义
|
||
int raise( int sig ); |
||
发送信号sig的程序。调用的信号处理程序,指定使用
signal()
.原文:
Sends signal sig to the program. The signal handler, specified using
signal()
is invoked.如果
signal()
还没有设置用户定义的信号处理策略,它是实现定义的信号是否会被忽略或默认的处理程序将被调用. 原文:
If the user-defined signal handling strategy is not set using
signal()
yet, it is implementation-defined whether the signal will be ignored or default handler will be invoked. 目录 |
[编辑] 参数
sig | - | 要发送的信号。它可以是一个实现定义的值或以下值之一:
原文: the signal to be sent. It can be an implementation-defined value or one of the following values:
|
[编辑] 返回值
0成功后,非零值,失败.....
原文:
0 upon success, non-zero value on failure.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
为特定的信号设置信号处理函数 (函数) | |
C++ documentation for raise
|