Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_create.cpp381 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()
Dpthread_internal.h103 void* (*start_routine)(void*); variable
181 bool is_main() { return start_routine == nullptr; } in is_main()
/bionic/tests/
Dstruct_layout_test.cpp40 CHECK_OFFSET(pthread_internal_t, start_routine, 96); in tests()
82 CHECK_OFFSET(pthread_internal_t, start_routine, 48); in tests()
Dunistd_test.cpp609 static int CloneStartRoutine(int (*start_routine)(void*)) { in CloneStartRoutine()
611 return clone(start_routine, &child_stack[1024], SIGCHLD, nullptr); in CloneStartRoutine()