| 240 | int ret; |
| 241 | |
| 242 | ATOMIC_FCMPSET_CODE(ret, uint8_t, "b"); |
| 243 | return (ret); |
| 244 | } |
| 245 | #define atomic_fcmpset_8 atomic_fcmpset_8 |
| 246 | |
| 247 | static __inline int |
| 248 | atomic_fcmpset_acq_8(volatile uint8_t *_ptr, uint8_t *_old, uint8_t _new) |
| 249 | { |
| 250 | int ret; |
| 251 | |
| 252 | ATOMIC_FCMPSET_CODE(ret, uint8_t, "b"); |
| 253 | dmb(); |
| 254 | return (ret); |
| 255 | } |
| 256 | |
| 257 | static __inline int |
| 258 | atomic_fcmpset_rel_8(volatile uint8_t *_ptr, uint8_t *_old, uint8_t _new) |
no outgoing calls
no test coverage detected