Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in volatile

java: `volatile` private fields with getters and setters

why can't a local variable be volatile in C#?

c# multithreading volatile

Why does std::cout convert volatile pointers to bool?

When to use 'volatile' or 'Thread.MemoryBarrier()' in threadsafe locking code? (C#)

What is the purpose of 'volatile' keyword in C#

c# multithreading volatile

Volatile variables

c# c volatile

Thread Synchronisation 101

Do we need to synchronize access to an array when the array variable is volatile?

Performance consequence of volatile member functions

c++ multithreading volatile

Why doesn't C# volatile protect write-read reordering?

Java volatile and cache coherence

java volatile

How can assigning a variable result in a serious performance drop while the execution order is (nearly) untouched?

benchmarking, code reordering, volatile

An equivalent to Java volatile in Python

java python volatile

Is volatile int in C as good as std::atomic<int> of C++0x?

c c++11 atomic volatile

CancellationTokenSource vs. volatile boolean

Does empty synchronized(this){} have any meaning to memory visibility between threads?

Do I need volatile for variables of reference types, too?

What kinds of optimizations does 'volatile' prevent in C++?

c++ optimization volatile

Can volatile but unfenced reads yield indefinitely stale values? (on real hardware)