SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE
De cppreference.com
<tbody>
</tbody>
| Dclar dans l'en-tte <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 entire avec des valeurs distinctes, qui reprsentent diffrents signaux envoys 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 rsiliation envoye 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
|
accs mmoire 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, gnralement dclenche 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 initie 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
|
opration arithmtique errone comme la division par zro
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. |
Voir aussi
dfinit 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) | |
excute 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
| |