Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_exit.cpp56 c->__cleanup_prev = thread->cleanup_stack; in __pthread_cleanup_push()
57 thread->cleanup_stack = c; in __pthread_cleanup_push()
63 thread->cleanup_stack = c->__cleanup_prev; in __pthread_cleanup_pop()
78 while (thread->cleanup_stack) { in pthread_exit()
79 __pthread_cleanup_t* c = thread->cleanup_stack; in pthread_exit()
80 thread->cleanup_stack = c->__cleanup_prev; in pthread_exit()
Dpthread_internal.h101 __pthread_cleanup_t* cleanup_stack; variable
Dpthread_create.cpp156 thread->cleanup_stack = nullptr; in __init_thread()
/bionic/tests/
Dstruct_layout_test.cpp39 CHECK_OFFSET(pthread_internal_t, cleanup_stack, 88); in tests()
81 CHECK_OFFSET(pthread_internal_t, cleanup_stack, 44); in tests()