Home | History | Annotate | Download | only in src

Lines Matching defs:error

95     goto error;
100 int error = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
101 if (error) {
102 LOG_ERROR("%s unable to create a recursive mutex: %s", __func__, strerror(error));
103 goto error;
106 error = pthread_mutex_init(&ret->callback_lock, &attr);
107 if (error) {
108 LOG_ERROR("%s unable to initialize mutex: %s", __func__, strerror(error));
109 goto error;
115 error:;