nginx/src/core/ngx_atomic.h

15 lines
230 B
C
Raw Normal View History

2003-12-19 16:15:11 +08:00
#ifndef _NGX_ATOMIC_H_INCLUDED_
#define _NGX_ATOMIC_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
2003-12-19 20:45:27 +08:00
/* STUB */
2003-12-19 16:15:11 +08:00
#define ngx_atomic_inc(x) x++;
#define ngx_atomic_dec(x) x--;
#endif /* _NGX_ATOMIC_H_INCLUDED_ */