Searched refs:thread_routine (Results 1 – 4 of 4) sorted by relevance
| /oneTBB/src/tbb/ |
| H A D | rml_thread_monitor.h | 101 …static handle_type launch( thread_routine_type thread_routine, void* arg, std::size_t stack_size, … 110 …static handle_type launch( thread_routine_type thread_routine, void* arg, std::size_t stack_size ); 141 inline thread_monitor::handle_type thread_monitor::launch( thread_routine_type thread_routine, void… in launch() argument 145 …HANDLE h = (HANDLE)_beginthreadex( nullptr, unsigned(stack_size), thread_routine, arg, STACK_SIZE_… in launch() 187 inline thread_monitor::handle_type thread_monitor::launch( void* (*thread_routine)(void*), void* ar… in launch() 208 error = pthread_create(&handle, &s, thread_routine, arg); in launch()
|
| H A D | private_server.cpp | 92 static __RML_DECL_THREAD_ROUTINE thread_routine( void* arg ); 218 __RML_DECL_THREAD_ROUTINE private_worker::thread_routine( void* arg ) { in thread_routine() function in tbb::detail::r1::rml::private_worker 300 … my_handle = thread_monitor::launch(thread_routine, this, my_server.my_stack_size, &worker_idx); in wake_or_launch() 305 my_handle = thread_monitor::launch(thread_routine, this, my_server.my_stack_size); in wake_or_launch()
|
| /oneTBB/python/rml/ |
| H A D | ipc_server.cpp | 71 static handle_type launch(thread_routine_type thread_routine, void* arg, size_t stack_size); 84 if( pthread_create( &handle, &s, thread_routine, arg ) ) return 0; in launch() 298 static __RML_DECL_THREAD_ROUTINE thread_routine(void* arg); 332 static __RML_DECL_THREAD_ROUTINE thread_routine(void* arg); 345 static __RML_DECL_THREAD_ROUTINE thread_routine(void* arg); 504 __RML_DECL_THREAD_ROUTINE ipc_worker::thread_routine(void* arg) { in thread_routine() function in tbb::detail::rml::ipc_worker 597 my_handle = ipc_thread_monitor::launch( thread_routine, this, my_server.my_stack_size ); in wake_or_launch() 646 __RML_DECL_THREAD_ROUTINE ipc_waker::thread_routine(void* arg) { in thread_routine() function in tbb::detail::rml::ipc_waker 697 my_handle = ipc_thread_monitor::launch( thread_routine, this, my_server.my_stack_size ); in wake_or_launch() 745 __RML_DECL_THREAD_ROUTINE ipc_stopper::thread_routine(void* arg) { in thread_routine() function in tbb::detail::rml::ipc_stopper [all …]
|
| /oneTBB/test/tbb/ |
| H A D | test_eh_thread.cpp | 65 static void* thread_routine(void*) in thread_routine() function 80 mValid = pthread_create(&mHandle, &attr, thread_routine, /* arg = */ nullptr) == 0; in Thread()
|