Lines Matching defs:futex
20 #include "futex.h"
29 u_int32_t *futex;
58 "perf bench futex lock-pi <options>",
97 ret = futex_lock_pi(w->futex, NULL, futex_flag);
102 w->tid, w->futex, ret);
110 ret = futex_unlock_pi(w->futex, futex_flag);
113 w->tid, w->futex, ret);
141 worker[i].futex = calloc(1, sizeof(u_int32_t));
142 if (!worker[i].futex)
145 worker[i].futex = &global_futex;
238 printf("[thread %3d] futex: %p [ %ld ops/sec ]\n",
239 worker[i].tid, worker[i].futex, t);
242 zfree(&worker[i].futex);