Home
last modified time | relevance | path

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

/bionic/libc/bionic/
D__cxa_thread_atexit_impl.cpp43 dtor->next = thread->thread_local_dtors; in __cxa_thread_atexit_impl()
44 thread->thread_local_dtors = dtor; in __cxa_thread_atexit_impl()
53 while (thread->thread_local_dtors != nullptr) { in __cxa_thread_finalize()
54 thread_local_dtor* current = thread->thread_local_dtors; in __cxa_thread_finalize()
55 thread->thread_local_dtors = current->next; in __cxa_thread_finalize()
Dpthread_internal.h145 thread_local_dtor* thread_local_dtors; variable