[ Web Proxy ]
URL:
Viewing: https://fr.cppreference.com/cpp/utility/program/_Exit [Back]  [Original]

std::_Exit cppreference.com
cppreference.com
Espaces de noms
Variantes

std::_Exit

De cppreference.com
 
 
 
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
 
<tbody> </tbody>
Dclar dans l'en-tte <cstdlib>
[[noreturn]] void _Exit( int exit_code );
(depuis C++11)
Provoque l'arrt du programme normal de se produire sans compltement nettoyer les ressources .
Original:
Causes normal program termination to occur without completely cleaning the resources.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Les destructeurs des variables automatiques avec des dures de fil, de stockage local et statique ne sont pas appels. Fonctions pass at_quick_exit() ou atexit() ne sont pas appels. Si les ressources ouvertes telles que les fichiers sont ferms dpend de l'implmentation. Si exit_code est EXIT_FAILURE, une mise en uvre dfinies par le statut, en indiquant' rsiliation sans succs, est retourn. Dans d'autres cas dfinis par l'implmentation valeur d'tat est retourn .
Original:
Destructors of variables with automatic, thread local and static storage durations are not called. Functions passed to at_quick_exit() or atexit() are not called. Whether open resources such as files are closed is implementation defined. If exit_code is EXIT_FAILURE, an implementation-defined status, indicating unsuccessful termination, is returned. In other cases implementation-defined status value is returned.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Paramtres

exit_code -
quitter l'tat du programme
Original:
exit status of the program
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Retourne la valeur

(Aucun)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exceptions

noexcept specification:  
<tbody> </tbody>
noexcept
   (depuis C++11)

Exemple

Voir aussi

provoque la terminaison anormale du programme (sans nettoyage)
Original:
causes abnormal program termination (without cleaning up)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]
provoque l'arrt du programme normal avec le nettoyage
Original:
causes normal program termination with cleaning up
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 _Exit

Web Proxy Viewer  |  New URL  |  Original Page