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

/bionic/libc/bionic/
H A Dpthread_create.cpp160 uint8_t* stack_top; local
171 stack_top = reinterpret_cast<uint8_t*>(attr->stack_base) + mmap_size;
175 stack_top = reinterpret_cast<uint8_t*>(attr->stack_base) + attr->stack_size;
183 stack_top = reinterpret_cast<uint8_t*>(
184 (reinterpret_cast<uintptr_t>(stack_top) - sizeof(pthread_internal_t)) & ~0xf);
186 pthread_internal_t* thread = reinterpret_cast<pthread_internal_t*>(stack_top);
192 attr->stack_size = stack_top - reinterpret_cast<uint8_t*>(attr->stack_base);
200 *child_stack = stack_top;

Completed in 354 milliseconds