Home
last modified time | relevance | path

Searched refs:thread_func (Results 1 – 11 of 11) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/gphoto2/gphoto2/
H A D0001-Match-prototypes-of-callbacks-with-libgphoto.patch21 @@ -1198,7 +1198,7 @@ thread_func (void *data)
32 pthread_create (&tid, NULL, thread_func, td);
H A D0001-gphoto2-Use-pthread_t-abstract-type-for-thead-IDs.patch19 @@ -1198,7 +1198,7 @@ thread_func (void *data)
/openbmc/qemu/tests/bench/
H A Datomic64-bench.c55 static void *thread_func(void *arg) in thread_func() function
105 qemu_thread_create(&threads[i], NULL, thread_func, info, in create_threads()
H A Datomic_add-bench.c53 static void *thread_func(void *arg) in thread_func() function
111 qemu_thread_create(&threads[i], NULL, thread_func, info, in create_threads()
H A Dqht-bench.c207 static void *thread_func(void *p) in thread_func() function
259 qemu_thread_create(&th[i], name, thread_func, &info[i], in th_create_n()
/openbmc/linux/tools/testing/selftests/mqueue/
H A Dmq_perf_tests.c719 void *thread_func; in main() local
722 thread_func = &fake_cont_thread; in main()
724 thread_func = &cont_thread; in main()
726 thread_func = &perf_test_thread; in main()
733 if (pthread_create(&cpu_threads[i], &thread_attr, thread_func, in main()
/openbmc/linux/drivers/media/i2c/
H A Dmsp3400-driver.c672 int (*thread_func)(void *data) = NULL; in msp_probe() local
842 thread_func = msp3400c_thread; in msp_probe()
845 thread_func = msp3410d_thread; in msp_probe()
848 thread_func = msp34xxg_thread; in msp_probe()
853 if (thread_func) { in msp_probe()
854 state->kthread = kthread_run(thread_func, client, "msp34xx"); in msp_probe()
/openbmc/linux/tools/testing/selftests/bpf/benchs/
H A Dbench_local_storage_create.c168 static void *thread_func(void *arg) in thread_func() function
182 pthd_results[i] = pthread_create(&pthds[i], NULL, thread_func, NULL); in task_producer()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/bonnie/bonnie++/
H A Dfix-configure-lfs.patch7 @@ -82,8 +82,15 @@ void * thread_func(void * param) { return NULL; }
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-yappi/
H A D0001-test_functionality-convert-line-endings-to-Unix.patch1088 - def thread_func():
1094 - t = threading.Thread(target=thread_func)
2999 + def thread_func():
3005 + t = threading.Thread(target=thread_func)
/openbmc/linux/tools/perf/
H A Dbuiltin-sched.c621 static void *thread_func(void *ctx) in thread_func() function
688 err = pthread_create(&task->thread, &attr, thread_func, parms); in create_tasks()