Home | History | Annotate | Download | only in include

Lines Matching full:__ec

216   int __ec = pthread_mutexattr_init(&attr);
217 if (__ec)
218 return __ec;
219 __ec = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
220 if (__ec) {
222 return __ec;
224 __ec = pthread_mutex_init(__m, &attr);
225 if (__ec) {
227 return __ec;
229 __ec = pthread_mutexattr_destroy(&attr);
230 if (__ec) {
232 return __ec;