SIG_DFL, SIG_IGN
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <csignal>
|
||
| #define SIG_DFL /*implementation defined*/ |
||
| #define SIG_IGN /*implementation defined*/ |
||
SIG_DFLとSIG_IGNマクロは、任意の関数のアドレスと等しくないインテグラル式に展開。マクロはstd::signal()機能用信号処理戦略を定義.
Original:
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 std::signal() function.
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.
| 定数
Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
SIG_DFL
|
デフォルトのシグナル処理
Original: default signal handling The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
SIF_IGN
|
信号は無視されます
Original: signal is ignored 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 SIG_DFL, SIG_IGN
|