Home
last modified time | relevance | path

Searched refs:cleanup_stack (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/bionic/
Dpthread_exit.cpp51 c->__cleanup_prev = thread->cleanup_stack; in __pthread_cleanup_push()
52 thread->cleanup_stack = c; in __pthread_cleanup_push()
57 thread->cleanup_stack = c->__cleanup_prev; in __pthread_cleanup_pop()
71 while (thread->cleanup_stack) { in pthread_exit()
72 __pthread_cleanup_t* c = thread->cleanup_stack; in pthread_exit()
73 thread->cleanup_stack = c->__cleanup_prev; in pthread_exit()
Dpthread_internal.h89 __pthread_cleanup_t* cleanup_stack; variable
Dpthread_create.cpp126 thread->cleanup_stack = NULL; in __init_thread()