Lines Matching refs:worker
26 struct worker { struct
34 static struct worker *worker; variable
83 struct worker *w = (struct worker *) arg; in workerfn()
120 static void create_threads(struct worker *w, pthread_attr_t thread_attr, in create_threads()
129 worker[i].tid = i; in create_threads()
132 worker[i].futex = calloc(1, sizeof(u_int32_t)); in create_threads()
133 if (!worker[i].futex) in create_threads()
136 worker[i].futex = &global_futex; in create_threads()
144 if (pthread_create(&w[i].thread, &thread_attr, workerfn, &worker[i])) in create_threads()
178 worker = calloc(params.nthreads, sizeof(*worker)); in bench_futex_lock_pi()
179 if (!worker) in bench_futex_lock_pi()
197 create_threads(worker, thread_attr, cpu); in bench_futex_lock_pi()
210 ret = pthread_join(worker[i].thread, NULL); in bench_futex_lock_pi()
222 worker[i].ops / bench__runtime.tv_sec : 0; in bench_futex_lock_pi()
227 worker[i].tid, worker[i].futex, t); in bench_futex_lock_pi()
230 zfree(&worker[i].futex); in bench_futex_lock_pi()
235 free(worker); in bench_futex_lock_pi()