Home
last modified time | relevance | path

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

123

/netbsd-src/external/gpl3/gcc.old/dist/libgcc/
H A Dgeneric-morestack-thread.c97 void *(*start_routine) (void *); member
112 void *(*start_routine) (void *); in stack_split_initialize_thread() local
124 start_routine = args->start_routine; in stack_split_initialize_thread()
127 return (*start_routine) (arg); in stack_split_initialize_thread()
135 void *(*start_routine) (void *), void *)
139 void *(*start_routine) (void *), void *)
144 void *(*start_routine) (void *), void *arg) in __wrap_pthread_create()
159 args->start_routine = start_routine; in __wrap_pthread_create()
/netbsd-src/external/gpl3/gcc/dist/libgcc/
H A Dgeneric-morestack-thread.c111 void *(*start_routine) (void *); member
126 void *(*start_routine) (void *); in stack_split_initialize_thread() local
138 start_routine = args->start_routine; in stack_split_initialize_thread()
141 return (*start_routine) (arg); in stack_split_initialize_thread()
149 void *(*start_routine) (void *), void *)
153 void *(*start_routine) (void *), void *)
158 void *(*start_routine) (void *), void *arg) in __wrap_pthread_create()
173 args->start_routine = start_routine; in __wrap_pthread_create()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_pthread_wrappers.h32 void *(*start_routine)(void *); member
39 void *ret = (start_data->start_routine)(start_data->arg); in PthreadHelperThreadProc()
45 void *(*start_routine)(void *), void *arg) { in PTHREAD_CREATE()
48 data->start_routine = start_routine; in PTHREAD_CREATE()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/safestack/
H A Dsafestack.cc125 void *(*start_routine)(void *); member
138 void *(*start_routine)(void *) = tinfo->start_routine; in thread_start() local
148 return start_routine(start_routine_arg); in thread_start()
220 void *(*start_routine)(void*), void *arg) { in INTERCEPTOR()
244 tinfo->start_routine = start_routine; in INTERCEPTOR()
/netbsd-src/lib/libpthread/
H A Dpthread_makelwp_netbsd.c48 pthread__makelwp(void (*start_routine)(void *), void *arg, void *priv, in pthread__makelwp()
66 _lwp_makecontext(&uc, start_routine, arg, priv, stack_base, stack_size); in pthread__makelwp()
/netbsd-src/external/bsd/openldap/dist/libraries/libldap/
H A Dthr_debug.c765 void *(*start_routine)( void * ); member
775 ret = call.start_routine( call.arg ); in ldap_debug_thread_wrapper()
784 void *(*start_routine)( void * ), in ldap_pvt_thread_create()
796 call->start_routine = start_routine; in ldap_pvt_thread_create()
798 start_routine = ldap_debug_thread_wrapper; in ldap_pvt_thread_create()
803 rc = ldap_int_thread_create( thread, detach, start_routine, arg ); in ldap_pvt_thread_create()
808 rc = ldap_int_thread_create( thread, detach, start_routine, arg ); in ldap_pvt_thread_create()
1200 ldap_pvt_thread_start_t *start_routine, void *arg ) in ldap_pvt_thread_pool_submit() argument
1205 rc = ldap_int_thread_pool_submit( tpool, start_routine, arg ); in ldap_pvt_thread_pool_submit()
H A Dthr_posix.c155 void *(*start_routine)( void * ), in ldap_pvt_thread_create()
185 rtn = pthread_create( thread, attr, start_routine, arg ); in ldap_pvt_thread_create()
187 rtn = pthread_create( thread, &attr, start_routine, arg ); in ldap_pvt_thread_create()
H A Dthr_thr.c67 void *(*start_routine)( void *), in ldap_pvt_thread_create()
70 return( thr_create( NULL, LDAP_PVT_THREAD_STACK_SIZE, start_routine, in ldap_pvt_thread_create()
H A Dthr_pth.c68 void *(*start_routine)( void *), in ldap_pvt_thread_create()
72 start_routine, arg ); in ldap_pvt_thread_create()
H A Dthr_nt.c76 void *(*start_routine)( void *), in ldap_pvt_thread_create()
83 thd = (HANDLE) _beginthreadex(NULL, LDAP_PVT_THREAD_STACK_SIZE, (thrfunc_t *) start_routine, in ldap_pvt_thread_create()
/netbsd-src/external/lgpl3/mpfr/dist/examples/
H A Dthreads.c43 static void *start_routine (void *arg) in start_routine() function
76 if (pthread_create (&tid[i], NULL, start_routine, &i) != 0) in main()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_thread.cc10 MsanThread *MsanThread::Create(thread_callback_t start_routine, in Create() argument
15 thread->start_routine_ = start_routine; in Create()
H A Dmsan_thread.h24 static MsanThread *Create(thread_callback_t start_routine, void *arg);
/netbsd-src/external/lgpl3/mpfr/dist/tests/
H A Dtconst_pi.c32 start_routine (void *arg) in start_routine() function
71 NULL, start_routine, &table[i]); in run_pthread_test()
/netbsd-src/external/mpl/bind/dist/lib/isc/
H A Dtrampoline_p.h
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/
H A Dtrampoline_p.h61 isc__trampoline_get(isc_threadfunc_t start_routine, isc_threadarg_t arg);
/netbsd-src/external/gpl3/binutils/dist/gprofng/libcollector/
H A Ddispatcher.c69 void *(*start_routine) (void *), void *arg) = NULL;
72 void *(*start_routine) (void *), void *arg) = NULL;
75 void *(*start_routine) (void *), void *arg) = NULL;
78 void *(*start_routine) (void *), void *arg) = NULL;
81 void *(*start_routine) (void *), void *arg) = NULL;
130 void *(*start_routine) (void *), void *arg) = NULL;
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_win.cc139 DWORD (__stdcall *start_routine)(void*), void* arg, in INTERCEPTOR_WINAPI()
150 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
H A Dasan_thread.cc80 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg, in Create() argument
86 thread->start_routine_ = start_routine; in Create()
H A Dasan_thread.h63 static AsanThread *Create(thread_callback_t start_routine, void *arg,
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_win.cc141 DWORD (__stdcall *start_routine)(void*), void* arg, in INTERCEPTOR_WINAPI()
152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
H A Dasan_thread.cc78 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg, in Create() argument
84 thread->start_routine_ = start_routine; in Create()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_win.cpp141 SIZE_T stack_size, LPTHREAD_START_ROUTINE start_routine, in INTERCEPTOR_WINAPI() argument
152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
H A Dasan_thread.h61 static AsanThread *Create(thread_callback_t start_routine, void *arg,
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
H A Dtsan_posix_util.h48 void *(*start_routine)(void *),

123