std::raise
提供: cppreference.com
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| Defined in header <csignal>
|
||
| int raise( int sig ); |
||
プログラムにシグナルsigを送信します。
signal()を使用して指定されたシグナルハンドラが呼び出されます.Original:
Sends signal sig to the program. The signal handler, specified using
signal() is invoked.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
ユーザ定義の信号処理の方針がまだ
signal()を使用して設定されていない場合は、信号は無視されるか、デフォルトのハンドラが呼び出されるかどうかは実装定義である. Original:
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. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
| sig | - | 信号が送信されます。これは、実装定義の値または次の値のいずれかを指定できます。
Original: the signal to be sent. It can be an implementation-defined value or one of the following values:
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||||||
[編集] 値を返します
失敗した場合に0成功時にはゼロ以外の値.
Original:
0 upon success, non-zero value on failure.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 例
| This section is incomplete Reason: no example |
[編集] 参照
| 特定のシグナルのシグナルハンドラを設定します Original: sets a signal handler for particular signal The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
| C documentation for raise
| |

