Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_create.cpp226 void* result = thread->start_routine(thread->start_routine_arg); in __pthread_start()
240 void* (*start_routine)(void*), void* arg) { in pthread_create()
267 thread->start_routine = start_routine; in pthread_create()
303 thread->start_routine = __do_nothing; in pthread_create()
Dpthread_internal.h91 void* (*start_routine)(void*); variable
/bionic/libc/include/
Dpthread.h127 void* (* _Nonnull start_routine)(void*), void*);
/bionic/tests/
Dunistd_test.cpp531 static int CloneStartRoutine(int (*start_routine)(void*)) { in CloneStartRoutine()
533 return clone(start_routine, &child_stack[1024], SIGCHLD, NULL); in CloneStartRoutine()