Go to the documentation of this file. 1 #ifndef __ASM_SYNC_BITOPS_H__
2 #define __ASM_SYNC_BITOPS_H__
4 #include <asm/bitops.h>
5 #include <asm/system.h>
17 #define sync_set_bit(nr, p) _set_bit(nr, p)
18 #define sync_clear_bit(nr, p) _clear_bit(nr, p)
19 #define sync_change_bit(nr, p) _change_bit(nr, p)
20 #define sync_test_and_set_bit(nr, p) _test_and_set_bit(nr, p)
21 #define sync_test_and_clear_bit(nr, p) _test_and_clear_bit(nr, p)
22 #define sync_test_and_change_bit(nr, p) _test_and_change_bit(nr, p)
23 #define sync_test_bit(nr, addr) test_bit(nr, addr)
24 #define sync_cmpxchg cmpxchg