Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stdatomic

std::atomic not supported by clang?

c++ clang atomic stdatomic

How to multiply two values and store the result atomically?

Why do GCC atomic builtins need an additional "generic" version?

c gcc intrinsics stdatomic

Atomic decrement-and-test in C

c atomic c11 stdatomic

How to assign a vector of atomic types?

c++ 11 std::atomic_flag, am I using this correctly?

std::atomic<int> memory_order_relaxed VS volatile sig_atomic_t in a multithreaded program

fetch_add with acq_rel memory order

error C2280: attempting to reference a deleted function (atomic<int>)

c++ c++11 stdatomic

is it ok to use std::atomic with a struct that is POD except that it has a construtor?

c++ struct stdatomic

C11/C++11 weak memory benchmarks

For purposes of ordering, is atomic read-modify-write one operation or two?

Is the transformation of fetch_add(0, memory_order_relaxed/release) to mfence + mov legal?

Using std::atomic with futex system call

c++ linux c++20 stdatomic futex

Does atomic_thread_fence(memory_order_seq_cst) have the semantics of a full memory barrier?

C++ How is release-and-acquire achieved on x86 only using MOV?

Does the MOV x86 instruction implement a C++11 memory_order_release atomic store?

Memory Model in C++ : sequential consistency and atomicity

Will two atomic writes to different locations in different threads always be seen in the same order by other threads?