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
|
|
|
|
|
|
|
|
|
2004-06-30 23:30:41 +08:00
|
|
|
#define ngx_atomic_inc(p) InterlockedIncrement((long *) p)
|
|
|
|
|
|
|
|
|
|
|
|
#if defined( __WATCOMC__ ) || defined( __BORLANDC__ )
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
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_ */
|