tss_set
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <threads.h>
|
||
int tss_set( tss_t tss_id, void *val ); |
(desde C11) | |
Establece el valor del almacenamiento de hilo específico identificado por
tss_id para el subproceso actual para val . Original:
Sets the value of the thread-specific storage identified by
tss_id for the current thread to val. 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.
Parámetros
| tss_id | - | identifica el almacenamiento de hilo específico para modificar
Original: identifies the thread-specific storage to modify The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| val | - | valor para establecer hilo específico de almacenamiento
Original: value to set thread-specific storage to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
thrd_success de tener éxito, de lo contrario thrd_error .Original:
thrd_success if successful, thrd_error 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.
Ver también
(C11) |
lee de hilo específico de almacenamiento Original: reads from thread-specific storage The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) |