Home
last modified time | relevance | path

Searched refs:pthread_create (Results 1 – 10 of 10) sorted by relevance

/oneTBB/examples/parallel_for/tachyon/src/
H A Dpthread_w.hpp94 extern int pthread_create(pthread_t *thread,
H A Dpthread.cpp55 int pthread_create(pthread_t *thread, in pthread_create() function
H A Dtrace.threads.cpp268 pthread_create( in thread_trace()
H A Dtrace.threads2d.cpp320 pthread_create( in thread_trace()
/oneTBB/test/tbb/
H A Dtest_eh_thread.cpp80 mValid = pthread_create(&mHandle, &attr, thread_routine, /* arg = */ nullptr) == 0; in Thread()
/oneTBB/doc/main/tbb_userguide/
H A Dappendix_B.rst69 pthread_create( &id[i], NULL, OuterLoopIteration, NULL );
/oneTBB/examples/common/gui/
H A Dmacvideo.cpp153 pthread_create(&handle, &attr, &thread_func, (void *)nullptr); in main_loop()
/oneTBB/src/tbb/
H A Drml_thread_monitor.h208 error = pthread_create(&handle, &s, thread_routine, arg); in launch()
H A Dco_context.h220 …check(pthread_create(&c.my_thread, &s, coroutine_thread_func, &data), "pthread_create has failed"); in create_coroutine()
/oneTBB/python/rml/
H A Dipc_server.cpp84 if( pthread_create( &handle, &s, thread_routine, arg ) ) return 0; in launch()