Searched refs:thread_fn (Results 1 – 8 of 8) sorted by relevance
/third_party/ltp/include/ |
D | tst_safe_pthread.h | 24 void *(*thread_fn)(void *), void *arg); 25 #define SAFE_PTHREAD_CREATE(thread_id, attr, thread_fn, arg) \ argument 26 safe_pthread_create(__FILE__, __LINE__, thread_id, attr, thread_fn, arg)
|
/third_party/ltp/lib/ |
D | safe_pthread.c | 14 void *(*thread_fn)(void *), void *arg) in safe_pthread_create() 18 rval = pthread_create(thread_id, attr, thread_fn, arg); in safe_pthread_create() 23 attr, thread_fn, arg, tst_strerrno(rval)); in safe_pthread_create()
|
/third_party/ltp/testcases/cve/ |
D | cve-2017-17053.c | 32 void *(*thread_fn)(void *), void *arg) in try_pthread_create() 36 rval = pthread_create(thread_id, attr, thread_fn, arg); in try_pthread_create() 40 thread_id, attr, thread_fn, arg, tst_strerrno(rval)); in try_pthread_create()
|
/third_party/boost/libs/coroutine/example/symmetric/ |
D | segmented_stack.cpp | 44 void thread_fn() in thread_fn() function 64 boost::thread( thread_fn).join(); in main()
|
/third_party/boost/libs/fiber/examples/ |
D | segmented_stack.cpp | 43 void thread_fn() in thread_fn() function 69 std::thread( thread_fn).join(); in main()
|
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl34.c | 31 static void spawn_threads(pthread_t *id, void *(*thread_fn)(void *)) in spawn_threads() 37 SAFE_PTHREAD_CREATE(id + i, NULL, thread_fn, (void *)i); in spawn_threads()
|
/third_party/ltp/testcases/network/nfs/nfs_stress/ |
D | nfs05_make_tree.c | 99 static void *thread_fn(LTP_ATTRIBUTE_UNUSED void *args) in thread_fn() function 206 SAFE_PTHREAD_CREATE(id + i, NULL, thread_fn, NULL); in do_test()
|
/third_party/boost/libs/fiber/doc/ |
D | scheduling.qbk | 33 void thread_fn() {
|