Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in atomic

Why do atomic operations like fetch-and-add return the old value of the variable being changed?

Do race conditions occur while reading large data blocks?

multithreading atomic raku

Functions for performing atomic operations

c atomic

Is changing the value of a Map an atomic operation?

Commit behavior and atomicity in python sqlite3 module

python sqlite commit atomic

If more than one thread can access a field should it be marked as volatile?

java memory atomic volatile

Atomic file save on Linux without losing metadata

linux perl macos file atomic

How to mix atomic and non-atomic operations in C++?

C++ atomic with non-trivial type?

c++ mutex atomic

How can I do an atomic write to stdout in python?

Is there an os-independent way to atomically overwrite a file?

file go atomic

Is there any compiler barrier which is equal to asm("" ::: "memory") in C++11?

fetch_add with acq_rel memory order

std::atomic_bool for cancellation flag: is std::memory_order_relaxed the correct memory order?

Is it possible to store pointers in shared memory without using offsets?

Atomic swap function using gcc atomic builtins

c++ atomic

What C++11 <atomic> operations/memory orders guarantees freshness? [duplicate]

Why does std::atomic's compare_exchange take a reference for the expected value?

c++ c++11 atomic

C++17 atomics and condition_variable deadlock

Is a shared mutex more efficient than an atomic of a relatively big struct?