| * Copyright (C) Igor Sysoev |
| * Copyright (C) Nginx, Inc. |
| ngx_thread_cond_create(ngx_thread_cond_t *cond, ngx_log_t *log) |
| err = pthread_cond_init(cond, NULL); |
| ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_init() failed"); |
| ngx_thread_cond_destroy(ngx_thread_cond_t *cond, ngx_log_t *log) |
| err = pthread_cond_destroy(cond); |
| ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_destroy() failed"); |
| ngx_thread_cond_signal(ngx_thread_cond_t *cond, ngx_log_t *log) |
| err = pthread_cond_signal(cond); |
| ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_signal() failed"); |
| ngx_thread_cond_wait(ngx_thread_cond_t *cond, ngx_thread_mutex_t *mtx, |
| err = pthread_cond_wait(cond, mtx); |
| ngx_log_error(NGX_LOG_ALERT, log, err, "pthread_cond_wait() failed"); |