aboutsummaryrefslogtreecommitdiffstats
path: root/nginx/src/os/unix/ngx_thread_cond.c
diff options
context:
space:
mode:
authorFlorin Coras <florin.coras@gmail.com>2020-04-29 17:00:20 +0000
committerGerrit Code Review <gerrit@fd.io>2020-04-29 17:00:20 +0000
commit1e75471aed27194fb8ee0b2c07c64fb8a8f55279 (patch)
treefdb69f1cbe2f3149254881c7bed298dcb283f832 /nginx/src/os/unix/ngx_thread_cond.c
parent057728c66960a84e3a6a607f0ddf5deb0095c7be (diff)
parent6a5411729539fe21117f406699a69974b320eb7e (diff)
Merge "remove nginx build directory"
Diffstat (limited to 'nginx/src/os/unix/ngx_thread_cond.c')
-rw-r--r--nginx/src/os/unix/ngx_thread_cond.c76
1 files changed, 0 insertions, 76 deletions
diff --git a/nginx/src/os/unix/ngx_thread_cond.c b/nginx/src/os/unix/ngx_thread_cond.c
deleted file mode 100644
index 2ad51b8..0000000
--- a/nginx/src/os/unix/ngx_thread_cond.c
+++ /dev/null
@@ -1,76 +0,0 @@
-
-/*
- * Copyright (C) Igor Sysoev
- * Copyright (C) Nginx, Inc.
- */
-
-
-#include <ngx_config.h>
-#include <ngx_core.h>
-
-
-ngx_int_t
-ngx_thread_cond_create(ngx_thread_cond_t *cond, ngx_log_t *log)
-{
- ngx_err_t err;
-
- err = pthread_cond_init(cond, NULL);
- if (err == 0) {
- return NGX_OK;
- }
-
- ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_init() failed");
- return NGX_ERROR;
-}
-
-
-ngx_int_t
-ngx_thread_cond_destroy(ngx_thread_cond_t *cond, ngx_log_t *log)
-{
- ngx_err_t err;
-
- err = pthread_cond_destroy(cond);
- if (err == 0) {
- return NGX_OK;
- }
-
- ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_destroy() failed");
- return NGX_ERROR;
-}
-
-
-ngx_int_t
-ngx_thread_cond_signal(ngx_thread_cond_t *cond, ngx_log_t *log)
-{
- ngx_err_t err;
-
- err = pthread_cond_signal(cond);
- if (err == 0) {
- return NGX_OK;
- }
-
- ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_signal() failed");
- return NGX_ERROR;
-}
-
-
-ngx_int_t
-ngx_thread_cond_wait(ngx_thread_cond_t *cond, ngx_thread_mutex_t *mtx,
- ngx_log_t *log)
-{
- ngx_err_t err;
-
- err = pthread_cond_wait(cond, mtx);
-
-#if 0
- ngx_time_update();
-#endif
-
- if (err == 0) {
- return NGX_OK;
- }
-
- ngx_log_error(NGX_LOG_ALERT, log, err, "pthread_cond_wait() failed");
-
- return NGX_ERROR;
-}