| 343 | } |
| 344 | |
| 345 | static __inline int |
| 346 | atomic_fcmpset_rel_long(volatile u_long *_ptr, u_long *_old, u_long _new) |
| 347 | { |
| 348 | int ret; |
| 349 | |
| 350 | dmb(); |
| 351 | ATOMIC_FCMPSET_CODE(ret, u_long, ""); |
| 352 | return (ret); |
| 353 | } |
| 354 | |
| 355 | static __inline int |
| 356 | atomic_fcmpset_64(volatile uint64_t *_ptr, uint64_t *_old, uint64_t _new) |
nothing calls this directly
no test coverage detected