Lines Matching refs:worker
26 struct worker { struct
34 static struct worker *worker; argument
81 struct worker *w = (struct worker *) arg; in workerfn()
118 static void create_threads(struct worker *w, pthread_attr_t thread_attr, in create_threads()
127 worker[i].tid = i; in create_threads()
130 worker[i].futex = calloc(1, sizeof(u_int32_t)); in create_threads()
131 if (!worker[i].futex) in create_threads()
134 worker[i].futex = &global_futex; in create_threads()
142 if (pthread_create(&w[i].thread, &thread_attr, workerfn, &worker[i])) in create_threads()
171 worker = calloc(nthreads, sizeof(*worker)); in bench_futex_lock_pi()
172 if (!worker) in bench_futex_lock_pi()
190 create_threads(worker, thread_attr, cpu); in bench_futex_lock_pi()
203 ret = pthread_join(worker[i].thread, NULL); in bench_futex_lock_pi()
215 worker[i].ops / bench__runtime.tv_sec : 0; in bench_futex_lock_pi()
220 worker[i].tid, worker[i].futex, t); in bench_futex_lock_pi()
223 zfree(&worker[i].futex); in bench_futex_lock_pi()
228 free(worker); in bench_futex_lock_pi()