Lines Matching defs:futex
20 #include "futex.h"
28 u_int32_t *futex;
55 "perf bench futex lock-pi <options>",
94 ret = futex_lock_pi(w->futex, NULL, futex_flag);
99 w->tid, w->futex, ret);
107 ret = futex_unlock_pi(w->futex, futex_flag);
110 w->tid, w->futex, ret);
130 worker[i].futex = calloc(1, sizeof(u_int32_t));
131 if (!worker[i].futex)
134 worker[i].futex = &global_futex;
219 printf("[thread %3d] futex: %p [ %ld ops/sec ]\n",
220 worker[i].tid, worker[i].futex, t);
223 zfree(&worker[i].futex);