3b11805964
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1919 bbd45198-f89e-11dd-88c7-29a3b14d5316
11 lines
208 B
C
11 lines
208 B
C
#ifndef __ASM_ATOMIC_H__
|
|
#define __ASM_ATOMIC_H__
|
|
|
|
#define atomic_t int
|
|
#define atomic_inc(atom) (*atom)++
|
|
#define atomic_dec(atom) (*atom)--
|
|
#define atomic_read(atom) (*atom)
|
|
|
|
|
|
#endif /* __ASM_ATOMIC_H__ */
|