abort
Aus cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| definiert in Header <stdlib.h>
|
||
void abort(); |
||
Verursacht abnormal program termination, wenn
SIGABRT wird durch ein Signal Handler übergeben, um zu signalisieren und der Hundeführer nicht wieder gefangen werden .Original:
Causes abnormal program termination unless
SIGABRT is being caught by a signal handler passed to signal and the handler does not return.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
atexit() werden nicht aufgerufen. Ob offen Ressourcen wie Dateien geschlossen sind ist die Umsetzung definiert. Implementierung definiert Status wird auf der Host-Umgebung, die nicht erfolgreichen Ausführung zeigt wieder . Original:
Functions, passed to
atexit() are not called. Whether open resources such as files are closed is implementation defined. Implementation defined status is returned to the host environment that indicates unsuccessful execution. 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
(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.
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 |
Siehe auch
verursacht normale Beendigung des Programms mit dem Aufräumen 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. (Funktion) | |
registriert eine Funktion auf exit() Aufruf aufgerufen werden Original: registers a function to be called on exit() invocation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
(C99) |
verursacht normale Beendigung des Programms, ohne sie komplett aufräumen Original: causes normal program termination without completely cleaning up The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) |
C++ documentation for abort
| |