quick_exit
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>| definiert in Header <stdlib.h>
|
||
void quick_exit( int exit_code ); |
(Seit C99) | |
Verursacht normalen Beendigung des Programms ohne komplette Reinigung der Ressourcen auftreten .
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.
You can help to correct and verify the translation. Click here for instructions.
Funktionen übergeben
at_quick_exit werden in umgekehrter Reihenfolge ihrer Anmeldung genannt. Nach dem Aufruf der registrierten Funktionen, ruft _Exit(exit_code)Original:
Functions passed to
at_quick_exit are called in reverse order of their registration. After calling the registered functions, calls _Exit(exit_code)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.
Parameter
| exit_code | - | Exit-Status des Programms
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. |
Rückgabewert
(None)
Original:
(none)
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.
Beispiel
| This section is incomplete Reason: no example |
