2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-06-30 23:30:41 +08:00
|
|
|
#ifndef _NGX_ATOMIC_H_INCLUDED_
|
|
|
|
#define _NGX_ATOMIC_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
2004-09-23 00:18:21 +08:00
|
|
|
#define NGX_HAVE_ATOMIC_OPS 1
|
|
|
|
|
2005-10-12 21:50:36 +08:00
|
|
|
typedef int32_t ngx_atomic_int_t;
|
|
|
|
typedef uint32_t ngx_atomic_uint_t;
|
2005-03-01 23:20:36 +08:00
|
|
|
typedef volatile ngx_atomic_uint_t ngx_atomic_t;
|
2005-10-12 21:50:36 +08:00
|
|
|
#define NGX_ATOMIC_T_LEN sizeof("-2147483648") - 1
|
2004-06-30 23:30:41 +08:00
|
|
|
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
#if defined( __WATCOMC__ ) || defined( __BORLANDC__ ) || ( _MSC_VER >= 1300 )
|
2004-06-30 23:30:41 +08:00
|
|
|
|
2004-09-23 00:18:21 +08:00
|
|
|
/* the new SDK headers */
|
|
|
|
|
2004-06-30 23:30:41 +08:00
|
|
|
#define ngx_atomic_cmp_set(lock, old, set) \
|
|
|
|
(InterlockedCompareExchange((long *) lock, set, old) == old)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2004-09-23 00:18:21 +08:00
|
|
|
/* the old MS VC6.0SP2 SDK headers */
|
|
|
|
|
2004-06-30 23:30:41 +08:00
|
|
|
#define ngx_atomic_cmp_set(lock, old, set) \
|
|
|
|
(InterlockedCompareExchange((void **) lock, (void *) set, (void *) old) \
|
|
|
|
== (void *) old)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-10-12 21:50:36 +08:00
|
|
|
#define ngx_atomic_fetch_add(p, add) InterlockedExchangeAdd((long *) p, add)
|
|
|
|
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
#define ngx_memory_barrier()
|
|
|
|
|
|
|
|
|
2004-06-30 23:30:41 +08:00
|
|
|
void ngx_spinlock(ngx_atomic_t *lock, ngx_uint_t spin);
|
|
|
|
|
|
|
|
#define ngx_trylock(lock) (*(lock) == 0 && ngx_atomic_cmp_set(lock, 0, 1))
|
|
|
|
#define ngx_unlock(lock) *(lock) = 0
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _NGX_ATOMIC_H_INCLUDED_ */
|