Searched refs:stack_top (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_create.cpp194 uint8_t* stack_top; local
207 stack_top = reinterpret_cast<uint8_t*>(attr->stack_base) + mmap_size;
211 stack_top = reinterpret_cast<uint8_t*>(attr->stack_base) + attr->stack_size;
219 stack_top = reinterpret_cast<uint8_t*>(
220 (reinterpret_cast<uintptr_t>(stack_top) - sizeof(pthread_internal_t)) & ~0xf);
222 pthread_internal_t* thread = reinterpret_cast<pthread_internal_t*>(stack_top);
228 attr->stack_size = stack_top - reinterpret_cast<uint8_t*>(attr->stack_base);
239 *child_stack = stack_top;

Completed in 52 milliseconds