Home
last modified time | relevance | path

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

/netbsd-src/lib/libpthread/
H A Dpthread.c326 pthread__getstack(pthread_t newthread, const pthread_attr_t *attr) in pthread__getstack() argument
346 if (newthread->pt_stack_allocated) { in pthread__getstack()
348 newthread->pt_stack.ss_size == stacksize && in pthread__getstack()
349 newthread->pt_guardsize == guardsize) in pthread__getstack()
351 stackbase2 = newthread->pt_stack.ss_sp; in pthread__getstack()
353 stackbase2 = (char *)stackbase2 - newthread->pt_guardsize; in pthread__getstack()
356 newthread->pt_stack.ss_size + newthread->pt_guardsize); in pthread__getstack()
357 newthread->pt_stack.ss_sp = NULL; in pthread__getstack()
358 newthread->pt_stack.ss_size = 0; in pthread__getstack()
359 newthread->pt_guardsize = 0; in pthread__getstack()
[all …]