Searched refs:start_routine (Results 1 – 4 of 4) sorted by relevance
381 void* result = thread->start_routine(thread->start_routine_arg); in __pthread_start()398 void* (*start_routine)(void*), void* arg) { in pthread_create()428 thread->start_routine = start_routine; in pthread_create()470 thread->start_routine = __do_nothing; in pthread_create()
103 void* (*start_routine)(void*); variable181 bool is_main() { return start_routine == nullptr; } in is_main()
40 CHECK_OFFSET(pthread_internal_t, start_routine, 96); in tests()82 CHECK_OFFSET(pthread_internal_t, start_routine, 48); in tests()
609 static int CloneStartRoutine(int (*start_routine)(void*)) { in CloneStartRoutine()611 return clone(start_routine, &child_stack[1024], SIGCHLD, nullptr); in CloneStartRoutine()