We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0224c04 commit 7a2b114Copy full SHA for 7a2b114
src/seqno.rs
@@ -64,7 +64,7 @@ impl SequenceNumberCounter {
64
#[must_use]
65
#[allow(clippy::missing_panics_doc, reason = "we should never run out of u64s")]
66
pub fn next(&self) -> SeqNo {
67
- let seqno = self.0.fetch_add(1, Release);
+ let seqno = self.0.fetch_add(1, AcqRel);
68
69
// The MSB is reserved for transactions.
70
//
0 commit comments