Lines Matching refs:tinfo
141 struct tinfo { struct
153 struct tinfo *tinfo = (struct tinfo *)arg; in thread_start() local
155 void *(*start_routine)(void *) = tinfo->start_routine; in thread_start()
156 void *start_routine_arg = tinfo->start_routine_arg; in thread_start()
159 unsafe_stack_setup(tinfo->unsafe_stack_start, tinfo->unsafe_stack_size, in thread_start()
160 tinfo->unsafe_stack_guard); in thread_start()
269 struct tinfo *tinfo = in INTERCEPTOR() local
270 (struct tinfo *)(((char *)addr) + size - sizeof(struct tinfo)); in INTERCEPTOR()
271 tinfo->start_routine = start_routine; in INTERCEPTOR()
272 tinfo->start_routine_arg = arg; in INTERCEPTOR()
273 tinfo->unsafe_stack_start = addr; in INTERCEPTOR()
274 tinfo->unsafe_stack_size = size; in INTERCEPTOR()
275 tinfo->unsafe_stack_guard = guard; in INTERCEPTOR()
277 return REAL(pthread_create)(thread, attr, thread_start, tinfo); in INTERCEPTOR()