SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE
De cppreference.com
Déclaré dans l'en-tête <csignal>
|
||
#define SIGTERM /*implementation defined*/ |
||
#define SIGSEGV /*implementation defined*/ |
||
#define SIGINT /*implementation defined*/ |
||
#define SIGILL /*implementation defined*/ |
||
#define SIGABRT /*implementation defined*/ |
||
#define SIGFPE /*implementation defined*/ |
||
Chacune des constantes de macro-dessus à une expression constante entière avec des valeurs distinctes, qui représentent différents signaux envoyés au programme .
Original:
Each of the above macro constants to an integer constant expression with distinct values, which represent different signals sent to the program.
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 |
SIGTERM
|
demande de résiliation envoyée au programme
Original: termination request, sent to the program The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
SIGSEGV
|
accès mémoire invalide (erreur de segmentation)
Original: invalid memory access (segmentation fault) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
SIGINT
|
interruption externe, généralement déclenchée par l'utilisateur
Original: external interrupt, usually initiated by the user The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
SIGILL
|
image de programme non valide, comme instruction non valide
Original: invalid program image, such as invalid instruction The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
SIGABRT
|
condition de fin anormale, est que, par exemple initiée par
abort() Original: abnormal termination condition, as is e.g. initiated by abort() The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
SIGFPE
|
opération arithmétique erronée comme la division par zéro
Original: erroneous arithmetic operation such as divide by zero 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
définit un gestionnaire de signal pour un signal particulier 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. (fonction) | |
exécute le gestionnaire de signal pour un signal particulier Original: runs the 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. (fonction) | |
C documentation for signal types
|