Summary:
As title.
Always specify namespace::symbol_name...
Test plan
CircleCI and other CI results
Pull Request resolved: https://github.com/facebook/rocksdb/pull/8090
Reviewed By: ltamasi
Differential Revision:
D27256130
Pulled By: riversand963
fbshipit-source-id:
b9b9ae2b3a8b4a16f0384292e71c6aecca93c570
// we need release here because of the write to waker_ and also because we
// are unlocking the mutex, the thread we do the handoff to here should
// see the modified data
- new (&waiter->metadata_) Metadata(waker, bit_cast<uintptr_t>(sleepers));
+ new (&waiter->metadata_)
+ Metadata(waker, folly::bit_cast<std::uintptr_t>(sleepers));
waiter->futex_.store(kWake, std::memory_order_release);
return 0;
}