mirror of
https://github.com/nginx/nginx.git
synced 2026-08-04 06:53:10 +00:00
Removed pthread mutex / conditional variables debug messages.
These messages doesn't seem to be needed in practice and only make debugging logs harder to read.
This commit is contained in:
parent
7ca4b6743d
commit
855f4b1cca
2 changed files with 0 additions and 20 deletions
|
|
@ -16,8 +16,6 @@ ngx_thread_cond_create(ngx_thread_cond_t *cond, ngx_log_t *log)
|
|||
|
||||
err = pthread_cond_init(cond, NULL);
|
||||
if (err == 0) {
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_cond_init(%p)", cond);
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
|
|
@ -33,8 +31,6 @@ ngx_thread_cond_destroy(ngx_thread_cond_t *cond, ngx_log_t *log)
|
|||
|
||||
err = pthread_cond_destroy(cond);
|
||||
if (err == 0) {
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_cond_destroy(%p)", cond);
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
|
|
@ -50,8 +46,6 @@ ngx_thread_cond_signal(ngx_thread_cond_t *cond, ngx_log_t *log)
|
|||
|
||||
err = pthread_cond_signal(cond);
|
||||
if (err == 0) {
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_cond_signal(%p)", cond);
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
|
|
@ -66,9 +60,6 @@ ngx_thread_cond_wait(ngx_thread_cond_t *cond, ngx_thread_mutex_t *mtx,
|
|||
{
|
||||
ngx_err_t err;
|
||||
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_cond_wait(%p) enter", cond);
|
||||
|
||||
err = pthread_cond_wait(cond, mtx);
|
||||
|
||||
#if 0
|
||||
|
|
@ -76,8 +67,6 @@ ngx_thread_cond_wait(ngx_thread_cond_t *cond, ngx_thread_mutex_t *mtx,
|
|||
#endif
|
||||
|
||||
if (err == 0) {
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_cond_wait(%p) exit", cond);
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -108,8 +108,6 @@ ngx_thread_mutex_create(ngx_thread_mutex_t *mtx, ngx_log_t *log)
|
|||
"pthread_mutexattr_destroy() failed");
|
||||
}
|
||||
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_mutex_init(%p)", mtx);
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
|
|
@ -126,8 +124,6 @@ ngx_thread_mutex_destroy(ngx_thread_mutex_t *mtx, ngx_log_t *log)
|
|||
return NGX_ERROR;
|
||||
}
|
||||
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_mutex_destroy(%p)", mtx);
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
|
|
@ -137,9 +133,6 @@ ngx_thread_mutex_lock(ngx_thread_mutex_t *mtx, ngx_log_t *log)
|
|||
{
|
||||
ngx_err_t err;
|
||||
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_mutex_lock(%p) enter", mtx);
|
||||
|
||||
err = pthread_mutex_lock(mtx);
|
||||
if (err == 0) {
|
||||
return NGX_OK;
|
||||
|
|
@ -163,8 +156,6 @@ ngx_thread_mutex_unlock(ngx_thread_mutex_t *mtx, ngx_log_t *log)
|
|||
#endif
|
||||
|
||||
if (err == 0) {
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0,
|
||||
"pthread_mutex_unlock(%p) exit", mtx);
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue