Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_create.cpp338 void* result = thread->start_routine(thread->start_routine_arg); in __pthread_start()
354 void* (*start_routine)(void*), void* arg) { in pthread_create()
384 thread->start_routine = start_routine; in pthread_create()
420 thread->start_routine = __do_nothing; in pthread_create()
Dpthread_internal.h98 void* (*start_routine)(void*); variable
/bionic/tests/
Dunistd_test.cpp539 static int CloneStartRoutine(int (*start_routine)(void*)) { in CloneStartRoutine()
541 return clone(start_routine, untag_address(&child_stack[1024]), SIGCHLD, nullptr); in CloneStartRoutine()