src/core/ngx_spinlock.c - nginx-1.7.10

Functions defined

Source code


  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #include <ngx_config.h>
  6. #include <ngx_core.h>


  7. void
  8. ngx_spinlock(ngx_atomic_t *lock, ngx_atomic_int_t value, ngx_uint_t spin)
  9. {

  10. #if (NGX_HAVE_ATOMIC_OPS)

  11.     ngx_uint_t  i, n;

  12.     for ( ;; ) {

  13.         if (*lock == 0 && ngx_atomic_cmp_set(lock, 0, value)) {
  14.             return;
  15.         }

  16.         if (ngx_ncpu > 1) {

  17.             for (n = 1; n < spin; n <<= 1) {

  18.                 for (i = 0; i < n; i++) {
  19.                     ngx_cpu_pause();
  20.                 }

  21.                 if (*lock == 0 && ngx_atomic_cmp_set(lock, 0, value)) {
  22.                     return;
  23.                 }
  24.             }
  25.         }

  26.         ngx_sched_yield();
  27.     }

  28. #else

  29. #if (NGX_THREADS)

  30. #error ngx_spinlock() or ngx_atomic_cmp_set() are not defined !

  31. #endif

  32. #endif

  33. }