| 177 | } |
| 178 | |
| 179 | static __inline void |
| 180 | atomic_clear_long(volatile u_long *address, u_long setmask) |
| 181 | { |
| 182 | |
| 183 | atomic_clear_32((volatile uint32_t *)address, setmask); |
| 184 | } |
| 185 | |
| 186 | ATOMIC_ACQ_REL(clear, 32) |
| 187 | ATOMIC_ACQ_REL(clear, 64) |
no test coverage detected