std::abort
|
|
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. |
| Defined in header <cstdlib>
|
||
| [[noreturn]] void abort(); |
(desde C++11) | |
| void abort(); |
(hasta C++11) | |
Causes abnormal program termination unless SIGABRT is being caught by a signal handler passed to signal and the handler does not return.
Destructors of variables with automatic, thread local and static almacenamiento duración are not called. Functions, passed to atexit() are also 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.
Contenido |
[editar] Parámetros
You can help to correct and verify the translation. Click here for instructions.
[editar] Valor de retorno
You can help to correct and verify the translation. Click here for instructions.
[editar] Excepciones
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver también
| produce la terminación normal del programa de limpieza 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. (función) | |
| registra una función para ser llamada en exit() invocación 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. (función) | |
| (C++11) |
produce la terminación normal del programa sin limpiar completamente 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. (función) |
| C documentation for abort
| |

