Home
last modified time | relevance | path

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

/ohos5.0/foundation/systemabilitymgr/samgr_lite/samgr/adapter/posix/
H A Dthread_adapter.c24 static pthread_key_t g_localKey = -1; variable
65 (void) pthread_key_create(&g_localKey, NULL); in KeyCreate()
101 return pthread_getspecific(g_localKey); in THREAD_GetThreadLocal()
106 pthread_setspecific(g_localKey, local); in THREAD_SetThreadLocal()
/ohos5.0/foundation/communication/ipc/ipc/native/c/manager/src/
H A Dipc_thread_pool.c30 static pthread_key_t g_localKey = -1; variable
36 void *curTLS = pthread_getspecific(g_localKey); in GetCurrentThreadContext()
48 pthread_setspecific(g_localKey, current); in GetCurrentThreadContext()
119 pthread_key_create(&g_localKey, TlsDestructor); in InitThreadPool()
132 pthread_key_delete(g_localKey); in DeinitThreadPool()