Lines Matching refs:e
53 int e = pthread_barrier_wait (&b); in tf() local
54 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) in tf()
96 int e; in check_type() local
105 e = pthread_mutexattr_gettype (ma, &ma_type); in check_type()
106 if (e != 0) in check_type()
108 printf ("pthread_mutexattr_gettype failed with %d (%m)\n", e); in check_type()
122 e = pthread_mutex_init (m, ma); in check_type()
123 if (e != 0) in check_type()
126 if (e == ENOTSUP) in check_type()
158 e = pthread_mutex_destroy (m); in check_type()
159 if (e == 0) in check_type()
164 if (e != EBUSY) in check_type()
188 e = pthread_mutex_destroy (m); in check_type()
189 if (e == 0) in check_type()
195 if (e != EBUSY) in check_type()
218 e = pthread_barrier_wait (&b); in check_type()
219 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) in check_type()
240 e = pthread_mutex_destroy (m); in check_type()
241 if (e == 0) in check_type()
247 if (e != EBUSY) in check_type()
293 e = pthread_barrier_wait (&b); in check_type()
294 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) in check_type()
315 e = pthread_mutex_destroy (m); in check_type()
316 if (e == 0) in check_type()
322 if (e != EBUSY) in check_type()