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:
authorOtto Kekäläinen <otto@seravo.fi>2016-06-08 08:27:41 +0300
committerOtto Kekäläinen <otto@seravo.fi>2016-06-08 08:27:41 +0300
commitcb963abf031d72224b6a650a210952e5dee34f55 (patch)
tree7c273179065b86458a367e4d402e5747000e48f0 /src/os
parent46336296e4d695cf34c55ced54e21f7647a53fdc (diff)
Fixed spelling.
Diffstat (limited to 'src/os')
-rw-r--r--src/os/unix/ngx_thread_mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_thread_mutex.c b/src/os/unix/ngx_thread_mutex.c
index 6e8385ef5..a0ef693e7 100644
--- a/src/os/unix/ngx_thread_mutex.c
+++ b/src/os/unix/ngx_thread_mutex.c
@@ -49,7 +49,7 @@
* for each mutex from 10 to 100 based on spin count taken
* previously.
* FreeBSD: Deadlock detection. The default spin count is 2000.
- * It can be overriden using LIBPTHREAD_SPINLOOPS environment
+ * It can be overridden using LIBPTHREAD_SPINLOOPS environment
* variable or by pthread_mutex_setspinloops_np(). If a lock
* is still busy, sched_yield() can be called on both UP and
* SMP systems. The default yield loop count is zero, but