Home
last modified time | relevance | path

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

/linux-6.12.1/tools/testing/selftests/mqueue/
Dmq_perf_tests.c721 void *thread_func; in main() local
724 thread_func = &fake_cont_thread; in main()
726 thread_func = &cont_thread; in main()
728 thread_func = &perf_test_thread; in main()
735 if (pthread_create(&cpu_threads[i], &thread_attr, thread_func, in main()
/linux-6.12.1/drivers/media/i2c/
Dmsp3400-driver.c664 int (*thread_func)(void *data) = NULL; in msp_probe() local
834 thread_func = msp3400c_thread; in msp_probe()
837 thread_func = msp3410d_thread; in msp_probe()
840 thread_func = msp34xxg_thread; in msp_probe()
845 if (thread_func) { in msp_probe()
846 state->kthread = kthread_run(thread_func, client, "msp34xx"); in msp_probe()
/linux-6.12.1/tools/testing/selftests/landlock/
Dscoped_signal_test.c260 void *thread_func(void *arg) in thread_func() function
279 pthread_create(&no_sandbox_thread, NULL, thread_func, NULL)); in TEST()
287 ASSERT_EQ(0, pthread_create(&scoped_thread, NULL, thread_func, NULL)); in TEST()
/linux-6.12.1/tools/testing/selftests/bpf/benchs/
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()
/linux-6.12.1/tools/perf/
Dbuiltin-sched.c613 static void *thread_func(void *ctx) in thread_func() function
680 err = pthread_create(&task->thread, &attr, thread_func, parms); in create_tasks()