| 500 | } |
| 501 | |
| 502 | static __inline int |
| 503 | atomic_cmpset_rel_32(volatile uint32_t *_ptr, uint32_t _old, uint32_t _new) |
| 504 | { |
| 505 | int ret; |
| 506 | |
| 507 | dmb(); |
| 508 | ATOMIC_CMPSET_CODE(ret, ""); |
| 509 | return (ret); |
| 510 | } |
| 511 | |
| 512 | static __inline int |
| 513 | atomic_cmpset_long(volatile u_long *_ptr, u_long _old, u_long _new) |
no outgoing calls
no test coverage detected