Searched refs:vcpu_threads (Results 1 – 2 of 2) sorted by relevance
/linux/tools/testing/selftests/kvm/ |
H A D | kvm_page_table_test.c | 343 pthread_t *vcpu_threads; in run_test() local 352 vcpu_threads = malloc(nr_vcpus * sizeof(*vcpu_threads)); in run_test() 353 TEST_ASSERT(vcpu_threads, "Memory allocation failed"); in run_test() 359 pthread_create(&vcpu_threads[i], NULL, vcpu_worker, in run_test() 408 pthread_join(vcpu_threads[i], NULL); in run_test() 416 free(vcpu_threads); in run_test()
|
/linux/tools/testing/selftests/kvm/arm64/ |
H A D | vgic_lpi_stress.c | 303 pthread_t *vcpu_threads = malloc(nr_vcpus * sizeof(pthread_t)); in run_test() local 307 TEST_ASSERT(lpi_threads && vcpu_threads, "Failed to allocate pthread arrays"); in run_test() 312 pthread_create(&vcpu_threads[i], NULL, vcpu_worker_thread, vcpus[i]); in run_test() 328 pthread_join(vcpu_threads[i], NULL); in run_test()
|