std::at_quick_exit
De 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. |
| Defined in header <cstdlib>
|
||
| extern "C" int at_quick_exit( void (*func)() ); extern "C++" int at_quick_exit( void (*func)() ); |
||
Registra la función a la que apunta
func de ser llamado a la terminación programa rápido (a través de std::quick_exit) .Original:
Registers the function pointed to by
func to be called on quick program termination (via std::quick_exit).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.
Llamar a la función de varios hilos no induce una carrera de datos. La implantación apoyará la inscripción de las funciones 32 por lo menos .
Original:
Calling the function from several threads does not induce a data race. The implementation shall support the registration of at least 32 functions.
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.
Contenido |
[editar] Parámetros
| func | - | puntero a una función que se llama a la terminación normal del programa
Original: pointer to a function to be called on normal program termination The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
0 si el registro tiene éxito, valor distinto de cero de otra manera .
Original:
0 if the registration succeeds, nonzero value otherwise.
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.
[editar] Excepciones
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver tambié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 documentation for at_quick_exit
| |