Espaces de noms
Variantes
Affichages
Actions

SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE

De cppreference.com
< cpp‎ | utility‎ | program
 
 
 
Services d'appui aux programmes
La fin du programme
Original:
Program termination
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
abort
exit
quick_exit (C++11)
_Exit (C++11)
Communiquer avec l'environnement
Original:
Communicating with the environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Signaux
Original:
Signals
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Types de signaux
Original:
Signal types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
SIGABRT
SIGFPE
SIGILL
SIGINT
SIGSEGV
SIGTERM
Non-locales sauts
Original:
Non-local jumps
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
setjmp
longjmp
Types
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
jmp_buf
 
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.
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) [edit]
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) [edit]
C documentation for signal types