Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread.c86 .stack_base = NULL,
168 return thread->attr.stack_base; in __get_stack_base()
210 …init_thread(pthread_internal_t * thread, pid_t kernel_id, pthread_attr_t * attr, void * stack_base) in _init_thread() argument
217 thread->attr.stack_base = stack_base; in _init_thread()
321 if (!attr->stack_base) { in pthread_create()
329 stack = attr->stack_base; in pthread_create()
456 attr->stack_base = stack_addr; in pthread_attr_setstackaddr()
463 *stack_addr = (char*)attr->stack_base + attr->stack_size; in pthread_attr_getstackaddr()
467 int pthread_attr_setstack(pthread_attr_t * attr, void * stack_base, size_t stack_size) in pthread_attr_setstack() argument
472 if ((uint32_t)stack_base & (PAGE_SIZE - 1)) { in pthread_attr_setstack()
[all …]
Dpthread_internal.h49 …nit_thread(pthread_internal_t * thread, pid_t kernel_id, pthread_attr_t * attr, void * stack_base);
/bionic/libc/include/
Dpthread.h70 void * stack_base; member