| 128 | } |
| 129 | |
| 130 | bool FAsyncHandle::CompareAndSetState(EAsyncHandleState& ExpectedState, EAsyncHandleState NewState) |
| 131 | { |
| 132 | return State.compare_exchange_strong(ExpectedState, NewState, std::memory_order_acq_rel); |
| 133 | } |
| 134 | |
| 135 | FAsyncMultiHandle::FAsyncMultiHandle(const bool InForceSync, const FName InName) |
| 136 | : bForceSync(InForceSync), GroupName(InName) |
nothing calls this directly
no outgoing calls
no test coverage detected