blob: b6bd17fb3b9fbbd2daca08b085628e0aad253ac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _NGX_ATOMIC_H_INCLUDED_
#define _NGX_ATOMIC_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
/* STUB */
#define ngx_atomic_inc(x) x++;
#define ngx_atomic_dec(x) x--;
#endif /* _NGX_ATOMIC_H_INCLUDED_ */
|