-
Notifications
You must be signed in to change notification settings - Fork 46
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
Lock-free atomics on 32-bit architectures #401
Comments
elBoberido
changed the title
Lock-free atomics on 32-bit
Lock-free atomics on 32-bit architectures
Sep 27, 2024
elBoberido
added a commit
to elBoberido/iceoryx2
that referenced
this issue
Sep 27, 2024
elBoberido
added a commit
to elBoberido/iceoryx2
that referenced
this issue
Sep 27, 2024
elBoberido
added a commit
to elBoberido/iceoryx2
that referenced
this issue
Sep 27, 2024
…2-bit and 64-bit apps
elBoberido
added a commit
to elBoberido/iceoryx2
that referenced
this issue
Sep 27, 2024
17 tasks
elBoberido
added a commit
that referenced
this issue
Sep 27, 2024
…r-32-bit [#401] Lock-free Atomics for 32-bit architectures
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Brief feature description
Currently, on 32-bit architectures, atomics with a lock are used for 64 bit data types. This is in general not required since all common 32-bit architectures support 8 byte CAS operation.
The atomics with locks should be replaced by the builtin atomics.
The text was updated successfully, but these errors were encountered: