| 655 | } |
| 656 | |
| 657 | static __inline u_long |
| 658 | atomic_load_acq_long(volatile u_long *p) |
| 659 | { |
| 660 | u_long v; |
| 661 | |
| 662 | v = *p; |
| 663 | dmb(); |
| 664 | return (v); |
| 665 | } |
| 666 | |
| 667 | static __inline uint32_t |
| 668 | atomic_readandclear_32(volatile uint32_t *p) |
no outgoing calls
no test coverage detected