Home
last modified time | relevance | path

Searched refs:thread_fn (Results 1 – 8 of 8) sorted by relevance

/third_party/ltp/include/
Dtst_safe_pthread.h24 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/
Dsafe_pthread.c14 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/
Dcve-2017-17053.c32 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/
Dsegmented_stack.cpp44 void thread_fn() in thread_fn() function
64 boost::thread( thread_fn).join(); in main()
/third_party/boost/libs/fiber/examples/
Dsegmented_stack.cpp43 void thread_fn() in thread_fn() function
69 std::thread( thread_fn).join(); in main()
/third_party/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl34.c31 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/
Dnfs05_make_tree.c99 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/
Dscheduling.qbk33 void thread_fn() {