Sign in
nginx
/
nginx
/
e89c4581f4706187052671a8a40dda4fe3e3c391
/
.
/
src
/
core
/
ngx_atomic.h
blob: b24a997c4c48ff95aa72fb574b1c243c490f33af [
file
] [
log
] [
blame
]
#ifndef
_NGX_ATOMIC_H_INCLUDED_
#define
_NGX_ATOMIC_H_INCLUDED_
#include
<ngx_config.h>
#include
<ngx_core.h>
#define
ngx_atomic_inc
(
x
)
x
++;
#define
ngx_atomic_dec
(
x
)
x
--;
#endif
/* _NGX_ATOMIC_H_INCLUDED_ */