Searched refs:thread_data (Results 1 – 3 of 3) sorted by relevance
19 void *), void *thread_data) in threading_thread_create_pthread() argument25 if (pthread_create(&thread->thread, NULL, thread_func, thread_data)) { in threading_thread_create_pthread()46 void *thread_data) = threading_thread_create_pthread;55 void *thread_data) in threading_thread_create_fail() argument59 (void) thread_data; in threading_thread_create_fail()72 void *thread_data) = threading_thread_create_fail;
53 void *thread_data),83 void *(*thread_func)(void *), void *thread_data);
181 struct thread_wrapper_data *thread_data = (struct thread_wrapper_data *)arg; in thread_wrapper() local183 thread_data->function(thread_data->arg); in thread_wrapper()196 struct thread_wrapper_data *thread_data; in sys_thread_new() local201 thread_data = (struct thread_wrapper_data *)malloc(sizeof(struct thread_wrapper_data)); in sys_thread_new()202 thread_data->arg = arg; in sys_thread_new()203 thread_data->function = function; in sys_thread_new()207 thread_data); in sys_thread_new()
Completed in 11 milliseconds