Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fine-tune the Ordering for the atomic usages #1015

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

wang384670111
Copy link

SeqCst is overly restrictive. I believe that the ordering can be appropriately modified.

COUNTER and NEXT_ID are used for multithreading counting purposes and don’t synchronize with other locals, so using Relaxed ordering is sufficient.

COUNTER.fetch_add(1, Ordering::SeqCst)

let next = NEXT_ID.fetch_add(1, Ordering::SeqCst).checked_add(1);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant