view 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
line wrap: on
line source

#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_ */