Searched refs:start_func (Results 1 - 7 of 7) sorted by relevance

/barrelfish-2018-10-04/lib/bomp/backends/
H A Dlinux.c90 struct thread *backend_thread_create_varstack(bomp_thread_func_t start_func, argument
93 start_func(arg);
/barrelfish-2018-10-04/lib/bomp/include/
H A Dbomp_backend.h26 typedef struct thread *(*backend_thread_create_fn_t)(bomp_thread_func_t start_func,
/barrelfish-2018-10-04/include/barrelfish/
H A Ddomain.h93 errval_t domain_thread_create_on(coreid_t core_id, thread_func_t start_func,
96 thread_func_t start_func,
H A Dthreads.h35 struct thread *thread_create(thread_func_t start_func, void *data);
36 struct thread *thread_create_varstack(thread_func_t start_func, void *arg,
/barrelfish-2018-10-04/lib/barrelfish/include/
H A Dthreads_priv.h118 struct thread *thread_create_unrunnable(thread_func_t start_func, void *arg,
/barrelfish-2018-10-04/lib/barrelfish/
H A Ddomain.c153 thread_func_t start_func = (thread_func_t)(uintptr_t)funcaddr; local
159 newthread = thread_create_varstack(start_func, arg, stacksize);
161 newthread = thread_create(start_func, arg);
946 thread_func_t start_func,
953 th = thread_create(start_func, arg);
955 th = thread_create_varstack(start_func, arg, stacksize);
981 (genvaddr_t)(uintptr_t)start_func,
1004 errval_t domain_thread_create_on(coreid_t core_id, thread_func_t start_func, argument
1007 return domain_thread_create_on_varstack(core_id, start_func, arg, 0, newthread);
945 domain_thread_create_on_varstack(coreid_t core_id, thread_func_t start_func, void *arg, size_t stacksize, struct thread **newthread) argument
H A Dthreads.c82 static void thread_entry(thread_func_t start_func, void *start_data) argument
84 assert((lvaddr_t)start_func >= BASE_PAGE_SIZE);
85 int retval = start_func(start_data);
348 * \param start_func Function to run on the new thread
354 struct thread *thread_create_unrunnable(thread_func_t start_func, void *arg, argument
430 (lvaddr_t)start_func, (lvaddr_t)arg, 0, 0);
438 * \param start_func Function to run on the new thread
444 struct thread *thread_create_varstack(thread_func_t start_func, void *arg, argument
447 struct thread *newthread = thread_create_unrunnable(start_func, arg, stacksize);
462 * \param start_func Functio
467 thread_create(thread_func_t start_func, void *arg) argument
[all...]

Completed in 105 milliseconds