diff options
author | Ruslan Ermilov <ru@nginx.com> | 2012-04-03 07:37:31 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2012-04-03 07:37:31 +0000 |
commit | 47a04aaa275d1a9b4a51997910f2b2a881464943 (patch) | |
tree | 349db1df06558325e03e3026293c52a309f49799 /src/os/unix/ngx_freebsd_rfork_thread.c | |
parent | 7744472c8e4db956bd29c030fdca1e55f5b007fe (diff) | |
download | nginx-47a04aaa275d1a9b4a51997910f2b2a881464943.tar.gz nginx-47a04aaa275d1a9b4a51997910f2b2a881464943.zip |
Fixed spelling in multiline C comments.
Diffstat (limited to 'src/os/unix/ngx_freebsd_rfork_thread.c')
-rw-r--r-- | src/os/unix/ngx_freebsd_rfork_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/unix/ngx_freebsd_rfork_thread.c b/src/os/unix/ngx_freebsd_rfork_thread.c index 9506b9de3..530ec4a53 100644 --- a/src/os/unix/ngx_freebsd_rfork_thread.c +++ b/src/os/unix/ngx_freebsd_rfork_thread.c @@ -11,14 +11,14 @@ /* * The threads implementation uses the rfork(RFPROC|RFTHREAD|RFMEM) syscall * to create threads. All threads use the stacks of the same size mmap()ed - * below the main stack. Thus the current thread id is determinated via + * below the main stack. Thus the current thread id is determined via * the stack pointer value. * * The mutex implementation uses the ngx_atomic_cmp_set() operation * to acquire a mutex and the SysV semaphore to wait on a mutex and to wake up * the waiting threads. The light mutex does not use semaphore, so after * spinning in the lock the thread calls sched_yield(). However the light - * mutecies are intended to be used with the "trylock" operation only. + * mutexes are intended to be used with the "trylock" operation only. * The SysV semop() is a cheap syscall, particularly if it has little sembuf's * and does not use SEM_UNDO. * |