atomic_init
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. |
Definido en la cabecera <stdatomic.h>
|
||
void atomic_init( volatile A* obj, C desired ); |
(desde C11) | |
Inicializa el default-construido
object
objeto atómico con el desired
valor. La función no es atómica: el acceso concurrente de otro hilo, incluso a través de una operación atómica, es una carrera de datos . Original:
Initializes the default-constructed atomic object
object
with the value desired
. The function is not atomic: concurrent access from another thread, even through an atomic operation, is a data race. 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.
Este es un función genérica definida para todos los tipos de objetos atómicos.
A
es el tipo de un objeto atómico, C
es del tipo no-atómico correspondiente a A
.Original:
This is a función genérica defined for all atomic object types.
A
is the type of an atomic object, C
is the non-atomic type corresponding to A
.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] Parámetros
obj | - | puntero a un objeto atómico para inicializar
Original: pointer to an atomic object to initialize The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
desired | - | el valor al inicializar el objeto atómico con
Original: the value to initialize atomic object with 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
(Ninguno)
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.
[editar] Ver también
(C11) |
inicializa un objeto atómico nuevo Original: initializes a new atomic object The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro de función) |
Documentación de C++ para atomic_init
|