| 490 | } |
| 491 | |
| 492 | static __inline int |
| 493 | atomic_cmpset_acq_32(volatile uint32_t *_ptr, uint32_t _old, uint32_t _new) |
| 494 | { |
| 495 | int ret; |
| 496 | |
| 497 | ATOMIC_CMPSET_CODE(ret, ""); |
| 498 | dmb(); |
| 499 | return (ret); |
| 500 | } |
| 501 | |
| 502 | static __inline int |
| 503 | atomic_cmpset_rel_32(volatile uint32_t *_ptr, uint32_t _old, uint32_t _new) |
no outgoing calls
no test coverage detected