comparison src/core/ngx_atomic.h @ 212:679f60139863

nginx-0.0.1-2003-12-19-11:15:11 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 19 Dec 2003 08:15:11 +0000
parents
children f536f91e8e99
comparison
equal deleted inserted replaced
211:fd9fecc4193f 212:679f60139863
1 #ifndef _NGX_ATOMIC_H_INCLUDED_
2 #define _NGX_ATOMIC_H_INCLUDED_
3
4
5 #include <ngx_config.h>
6 #include <ngx_core.h>
7
8
9 #define ngx_atomic_inc(x) x++;
10 #define ngx_atomic_dec(x) x--;
11
12
13 #endif /* _NGX_ATOMIC_H_INCLUDED_ */