#ifndef _NGX_ATOMIC_H_INCLUDED_
#define _NGX_ATOMIC_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
#if (NGX_HAVE_LIBATOMIC)
#define AO_REQUIRE_CAS
#include <atomic_ops.h>
#define NGX_HAVE_ATOMIC_OPS …
typedef long ngx_atomic_int_t;
typedef AO_t ngx_atomic_uint_t;
typedef volatile ngx_atomic_uint_t ngx_atomic_t;
#if (NGX_PTR_SIZE == 8)
#define NGX_ATOMIC_T_LEN …
#else
#define NGX_ATOMIC_T_LEN …
#endif
#define ngx_atomic_cmp_set …
#define ngx_atomic_fetch_add …
#define ngx_memory_barrier …
#define ngx_cpu_pause …
#elif (NGX_HAVE_GCC_ATOMIC)
#define NGX_HAVE_ATOMIC_OPS …
ngx_atomic_int_t;
ngx_atomic_uint_t;
#if (NGX_PTR_SIZE == 8)
#define NGX_ATOMIC_T_LEN …
#else
#define NGX_ATOMIC_T_LEN …
#endif
ngx_atomic_t;
#define ngx_atomic_cmp_set(lock, old, set) …
#define ngx_atomic_fetch_add(value, add) …
#define ngx_memory_barrier() …
#if ( __i386__ || __i386 || __amd64__ || __amd64 )
#define ngx_cpu_pause() …
#else
#define ngx_cpu_pause …
#endif
#elif (NGX_DARWIN_ATOMIC)
#include <libkern/OSAtomic.h>
#if 0
#undef bool
#endif
#define NGX_HAVE_ATOMIC_OPS …
#if (NGX_PTR_SIZE == 8)
typedef int64_t ngx_atomic_int_t;
typedef uint64_t ngx_atomic_uint_t;
#define NGX_ATOMIC_T_LEN …
#define ngx_atomic_cmp_set …
#define ngx_atomic_fetch_add …
#else
typedef int32_t ngx_atomic_int_t;
typedef uint32_t ngx_atomic_uint_t;
#define NGX_ATOMIC_T_LEN …
#define ngx_atomic_cmp_set …
#define ngx_atomic_fetch_add …
#endif
#define ngx_memory_barrier …
#define ngx_cpu_pause …
typedef volatile ngx_atomic_uint_t ngx_atomic_t;
#elif ( __i386__ || __i386 )
typedef int32_t ngx_atomic_int_t;
typedef uint32_t ngx_atomic_uint_t;
typedef volatile ngx_atomic_uint_t ngx_atomic_t;
#define NGX_ATOMIC_T_LEN …
#if ( __SUNPRO_C )
#define NGX_HAVE_ATOMIC_OPS …
ngx_atomic_uint_t
ngx_atomic_cmp_set(ngx_atomic_t *lock, ngx_atomic_uint_t old,
ngx_atomic_uint_t set);
ngx_atomic_int_t
ngx_atomic_fetch_add(ngx_atomic_t *value, ngx_atomic_int_t add);
void
ngx_cpu_pause(void);
#define ngx_memory_barrier …
#else
#define NGX_HAVE_ATOMIC_OPS …
#include "ngx_gcc_atomic_x86.h"
#endif
#elif ( __amd64__ || __amd64 )
typedef int64_t ngx_atomic_int_t;
typedef uint64_t ngx_atomic_uint_t;
typedef volatile ngx_atomic_uint_t ngx_atomic_t;
#define NGX_ATOMIC_T_LEN …
#if ( __SUNPRO_C )
#define NGX_HAVE_ATOMIC_OPS …
ngx_atomic_uint_t
ngx_atomic_cmp_set(ngx_atomic_t *lock, ngx_atomic_uint_t old,
ngx_atomic_uint_t set);
ngx_atomic_int_t
ngx_atomic_fetch_add(ngx_atomic_t *value, ngx_atomic_int_t add);
void
ngx_cpu_pause(void);
#define ngx_memory_barrier …
#else
#define NGX_HAVE_ATOMIC_OPS …
#include "ngx_gcc_atomic_amd64.h"
#endif
#elif ( __sparc__ || __sparc || __sparcv9 )
#if (NGX_PTR_SIZE == 8)
typedef int64_t ngx_atomic_int_t;
typedef uint64_t ngx_atomic_uint_t;
#define NGX_ATOMIC_T_LEN …
#else
typedef int32_t ngx_atomic_int_t;
typedef uint32_t ngx_atomic_uint_t;
#define NGX_ATOMIC_T_LEN …
#endif
typedef volatile ngx_atomic_uint_t ngx_atomic_t;
#if ( __SUNPRO_C )
#define NGX_HAVE_ATOMIC_OPS …
#include "ngx_sunpro_atomic_sparc64.h"
#else
#define NGX_HAVE_ATOMIC_OPS …
#include "ngx_gcc_atomic_sparc64.h"
#endif
#elif ( __powerpc__ || __POWERPC__ )
#define NGX_HAVE_ATOMIC_OPS …
#if (NGX_PTR_SIZE == 8)
typedef int64_t ngx_atomic_int_t;
typedef uint64_t ngx_atomic_uint_t;
#define NGX_ATOMIC_T_LEN …
#else
typedef int32_t ngx_atomic_int_t;
typedef uint32_t ngx_atomic_uint_t;
#define NGX_ATOMIC_T_LEN …
#endif
typedef volatile ngx_atomic_uint_t ngx_atomic_t;
#include "ngx_gcc_atomic_ppc.h"
#endif
#if !(NGX_HAVE_ATOMIC_OPS)
#define NGX_HAVE_ATOMIC_OPS …
typedef int32_t ngx_atomic_int_t;
typedef uint32_t ngx_atomic_uint_t;
typedef volatile ngx_atomic_uint_t ngx_atomic_t;
#define NGX_ATOMIC_T_LEN …
static ngx_inline ngx_atomic_uint_t
ngx_atomic_cmp_set(ngx_atomic_t *lock, ngx_atomic_uint_t old,
ngx_atomic_uint_t set)
{
if (*lock == old) {
*lock = set;
return 1;
}
return 0;
}
static ngx_inline ngx_atomic_int_t
ngx_atomic_fetch_add(ngx_atomic_t *value, ngx_atomic_int_t add)
{
ngx_atomic_int_t old;
old = *value;
*value += add;
return old;
}
#define ngx_memory_barrier …
#define ngx_cpu_pause …
#endif
void ngx_spinlock(ngx_atomic_t *lock, ngx_atomic_int_t value, ngx_uint_t spin);
#define ngx_trylock(lock) …
#define ngx_unlock(lock) …
#endif