◐ Shell
clean mode source ↗

abort — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

Déclaré dans l'en-tête

<stdlib.h>

void abort();

Causes terminaison anormale du programme à moins SIGABRT est capturé par un gestionnaire de signal transmis à signaler et le gestionnaire ne retourne pas .

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.

Fonctions, passés à atexit() ne sont pas appelés. Si les ressources ouvertes telles que les fichiers sont fermés dépend de l'implémentation. L'état de mise en œuvre défini est retourné à l'environnement hôte qui indique l'exécution échoue .

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.

Paramètres

(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.

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.

Exemple

Voir aussi

provoque l'arrêt 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]

enregistre une fonction qui sera appelée lors de son invocation

exit()

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.


(fonction) [edit]

provoque l'arrêt du programme normal sans complètement nettoyage

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.


(fonction) [edit]