1CLEAR_BIT(9) Basic C Library Functions CLEAR_BIT(9)
2
3
4
6 clear_bit - Clears a bit in memory
7
9 void clear_bit(int nr, volatile unsigned long * addr);
10
12 nr
13 Bit to clear
14
15 addr
16 Address to start counting from
17
19 clear_bit is atomic and may not be reordered. However, it does not
20 contain a memory barrier, so if it is used for locking purposes, you
21 should call smp_mb__before_clear_bit and/or smp_mb__after_clear_bit in
22 order to ensure changes are visible on other processors.
23
25Kernel Hackers Manual 2.6. November 2011 CLEAR_BIT(9)