Questions
Linux
Laravel
Mysql
Ubuntu
Git
Menu
HTML
CSS
JAVASCRIPT
SQL
PYTHON
PHP
BOOTSTRAP
JAVA
JQUERY
R
React
Kotlin
×
Linux
Laravel
Mysql
Ubuntu
Git
New posts in relaxed-atomics
Why does memory_order_relaxed use atomic (lock-prefixed) instructions on x86?
Jul 01, 2022
c++
visual-c++
x86
atomic
relaxed-atomics
Will fetch_add with relaxed memory order return unique values?
Jan 20, 2020
c++
concurrency
atomic
memory-model
relaxed-atomics
std::atomic_bool for cancellation flag: is std::memory_order_relaxed the correct memory order?
May 18, 2022
c++
atomic
cancellation
memory-barriers
relaxed-atomics
Understanding memory_order_relaxed
Nov 10, 2022
c++
multithreading
c++11
relaxed-atomics
Does atomic_thread_fence(memory_order_seq_cst) have the semantics of a full memory barrier?
Nov 07, 2022
c++
memory-barriers
memory-model
stdatomic
relaxed-atomics
Lock-free stack - Is this a correct usage of c++11 relaxed atomics? Can it be proven?
Feb 17, 2022
c++
multithreading
c++11
atomic
relaxed-atomics
Does C++11 guarantee memory ordering between a release fence and a consume operation?
Dec 11, 2021
c++
memory-barriers
memory-model
stdatomic
relaxed-atomics
Is it possible that a store with memory_order_relaxed never reaches other threads?
Jan 06, 2022
c++
c++11
memory-barriers
relaxed-atomics
C++ standard: can relaxed atomic stores be lifted above a mutex lock?
Sep 17, 2022
c++
mutex
memory-model
stdatomic
relaxed-atomics
How can memory_order_relaxed work for incrementing atomic reference counts in smart pointers?
Oct 23, 2022
c++
multithreading
c++11
memory-model
relaxed-atomics