mirror of
https://github.com/nginx/nginx.git
synced 2025-01-10 12:08:29 +08:00
14 lines
219 B
C
14 lines
219 B
C
|
#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_ */
|