Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in volatile

volatile and const pointer

c pointers constants volatile

Is the C compiler free to rewrite adjacent values in an array?

c arrays volatile

Is 'volatile' sufficient to prevent C++ compilers from optimizing out a silent write?

c++ volatile

Difference between volatile Boolean and Boolean

volatile under the hood

c embedded volatile

Usefulness of volatile in concurrent programming since C++11

c++ c++11 concurrency volatile

volatile + object combination disallowed in C++?

Calling volatile member function using not volatile object in C++

Is this a better version of Double Check Locking without volatile and synchronization overhead

What I do not understand about volatile and Memory-Barrier is

volatile identifier in java

java thread-safety volatile

Java - is volatile required with synchronized?

Is the extern keyword necessary when referring a volatile variable declared in another C source file?

c volatile extern

Understanding Java volatile visibility

What is the difference between volatile & extern?

c embedded volatile

long and double assignments are not atomic - How does it matter?

Overloading on const and volatile- why does it work by reference?

why using volatile makes long and double atomic [duplicate]

Java threading/volatile

Singleton double-check concurrency issue