Go to the documentation of this file. 1 #ifndef _ASM_GENERIC_BITOPS_LOCK_H_
2 #define _ASM_GENERIC_BITOPS_LOCK_H_
12 #define test_and_set_bit_lock(nr, addr) test_and_set_bit(nr, addr)
21 #define clear_bit_unlock(nr, addr) \
23 smp_mb__before_clear_bit(); \
24 clear_bit(nr, addr); \
38 #define __clear_bit_unlock(nr, addr) \
41 __clear_bit(nr, addr); \