Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2017-09-18 11:09:41 +0300
committerRuslan Ermilov <ru@nginx.com>2017-09-18 11:09:41 +0300
commit05e87e19aff42a75a290b99f5684a73dbd38a329 (patch)
tree37f2a7ac4165cbb9b325fa3e4281107f52bd9d8f /src/os
parent99cc4c72c7c2cdb802c6e6ceb0a0a1f8b115be29 (diff)
Removed more remnants of the old pthread implementation.
After e284f3ff6831, ngx_crypt() can no longer return NGX_AGAIN.
Diffstat (limited to 'src/os')
-rw-r--r--src/os/unix/ngx_user.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/os/unix/ngx_user.c b/src/os/unix/ngx_user.c
index 27c76ef80..7ebe2b576 100644
--- a/src/os/unix/ngx_user.c
+++ b/src/os/unix/ngx_user.c
@@ -9,16 +9,6 @@
#include <ngx_core.h>
-/*
- * Solaris has thread-safe crypt()
- * Linux has crypt_r(); "struct crypt_data" is more than 128K
- * FreeBSD needs the mutex to protect crypt()
- *
- * TODO:
- * ngx_crypt_init() to init mutex
- */
-
-
#if (NGX_CRYPT)
#if (NGX_HAVE_GNU_CRYPT_R)