Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:17

0001 #ifndef __ASM_ATOMIC_H__
0002 #define __ASM_ATOMIC_H__
0003 
0004 #define atomic_t int
0005 #define atomic_inc(atom) (*atom)++
0006 #define atomic_dec(atom) (*atom)--
0007 #define atomic_read(atom) (*atom)
0008 
0009 
0010 #endif /* __ASM_ATOMIC_H__ */