Home
last modified time | relevance | path

Searched refs:server_thread (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.4/drivers/misc/mic/cosm/
Dcosm_scif_server.c91 static struct task_struct *server_thread; variable
370 server_thread = kthread_run(cosm_scif_server, NULL, "cosm_server"); in cosm_scif_init()
371 if (IS_ERR(server_thread)) { in cosm_scif_init()
372 rc = PTR_ERR(server_thread); in cosm_scif_init()
388 if (!IS_ERR_OR_NULL(server_thread)) { in cosm_scif_exit()
389 rc = send_sig(SIGKILL, server_thread, 0); in cosm_scif_exit()
395 kthread_stop(server_thread); in cosm_scif_exit()
/Linux-v5.4/tools/testing/selftests/net/
Dtcp_inq.c100 pthread_t server_thread; in main() local
136 if (pthread_create(&server_thread, NULL, start_server, in main()
/Linux-v5.4/tools/testing/selftests/bpf/prog_tests/
Dsockopt_inherit.c65 static void *server_thread(void *arg) in server_thread() function
196 if (CHECK_FAIL(pthread_create(&tid, NULL, server_thread, in run_test()
Dtcp_rtt.c209 static void *server_thread(void *arg) in server_thread() function
261 if (CHECK_FAIL(pthread_create(&tid, NULL, server_thread, in test_tcp_rtt()