Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in atomic

Is comparing 2 int's an atomic operation?

c++ gcc atomic

How to decrement one field and increment another field atomically in java using concurrency classes

java concurrency atomic

Atomic operations over a list

When should `std::atomic` be used? [duplicate]

Acquire/Release VS Sequential Consistency in C++11?

Is Singleton object returned through shared_ptr thread-safe?

c++ singleton atomic rvo

How to avoid race condition when refcounting without a mutex?

c++ atomic lock-free

Is this Singleton Implementation Thread-Safe?

If atomic_compare_exchange isn't atomic on its own thread, how can it implement a lock?

c++ multithreading atomic

Atomic function pointer call compiles in gcc, but not in clang and msvc

Are reads/writes of 64-bit values atomic on a 64-bit cpu? [closed]

c# .net atomic 32bit-64bit

race condition using OpenMP atomic capture operation for 3D histogram of particles and making an index

Why are mutexes different from atomic operations in that the former is OS level and the latter is processor level?

How to atomically create a file in a non-existing folder?

c# file directory atomic

Synchronizing access to data using a "got there first" flag, instead of a lock/mutex

Do atomics in C++11 prevent compiler to re-read from shared variables?

c++ c++11 atomic memory-model