| 799 | } |
| 800 | |
| 801 | static __inline void |
| 802 | atomic_subtract_long(volatile u_long *p, u_long val) |
| 803 | { |
| 804 | |
| 805 | atomic_subtract_32((volatile uint32_t *)p, val); |
| 806 | } |
| 807 | |
| 808 | ATOMIC_ACQ_REL(subtract, 32) |
| 809 | ATOMIC_ACQ_REL(subtract, 64) |
no test coverage detected