Lines Matching defs:ret
72 int ret;
92 ret = futex_wait(&w->futex[i], 1234, NULL, futex_flag);
94 (!ret || errno != EAGAIN || errno != EWOULDBLOCK))
125 int ret = 0;
191 ret = pthread_attr_setaffinity_np(&thread_attr, size, cpuset);
192 if (ret) {
196 ret = pthread_create(&worker[i].thread, &thread_attr, workerfn,
198 if (ret) {
217 ret = pthread_join(worker[i].thread, NULL);
218 if (ret)
248 return ret;