Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_create.cpp382 void* result = thread->start_routine(thread->start_routine_arg); in __pthread_start()
399 void* (*start_routine)(void*), void* arg) { in pthread_create()
429 thread->start_routine = start_routine; in pthread_create()
472 thread->start_routine = __do_nothing; in pthread_create()
Dpthread_internal.h101 void* (*start_routine)(void*); variable
/bionic/tests/
Dstruct_layout_test.cpp40 CHECK_OFFSET(pthread_internal_t, start_routine, 96); in tests()
83 CHECK_OFFSET(pthread_internal_t, start_routine, 48); in tests()
Dunistd_test.cpp593 static int CloneStartRoutine(int (*start_routine)(void*)) { in CloneStartRoutine()
595 return clone(start_routine, &child_stack[1024], SIGCHLD, nullptr); in CloneStartRoutine()