Home
last modified time | relevance | path

Searched refs:TLS_pointer_key (Results 1 – 2 of 2) sorted by relevance

/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp214 TLS_pointer_key = TlsAlloc(); in init()
215 if (TLS_pointer_key == TLS_ALLOC_FAILURE) in init()
218 int status = pthread_key_create( &TLS_pointer_key, mallocThreadShutdownNotification ); in init()
228 BOOL status1 = !(TlsFree(TLS_pointer_key)); // fail is zero in destroy()
230 int status1 = pthread_key_delete(TLS_pointer_key); in destroy()
238 return (TLSData *)TlsGetValue_func( TLS_pointer_key ); in getThreadMallocTLS()
243 TlsSetValue_func( TLS_pointer_key, newvalue ); in setThreadMallocTLS()
H A Dtbbmalloc_internal.h152 tls_key_t TLS_pointer_key; variable