SIG_DFL, SIG_IGN
De cppreference.com.
| Défini dans l'entête <csignal>
|
||
| #define SIG_DFL /*implementation defined*/ |
||
| #define SIG_IGN /*implementation defined*/ |
||
Les macros SIG_DFL et SIG_IGN développer dans des expressions intégrales qui ne sont pas égale à une adresse de n'importe quelle fonction. Les macros définir des stratégies de gestion des signaux pour la fonction de 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.
| Constante
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
|
traitement du signal par défaut
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
|
signal est ignoré
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. |
[modifier] Voir aussi
| C documentation for SIG_DFL, SIG_IGN
|