Volatile is a qualifier used to define a data storage area (object, field, variable, parameter) that "can change on its own", thus disallowing some code generator optimizations. In some but not all languages that recognize this qualifier the access to such data is thread safe.

learn more… | top users | synonyms

2
votes
2answers
101 views

Can a C++ Compiler Eliminate a Volatile Local Var that is not Read

Say, I have this code: int f() { volatile int c; c=34; return abc(); } The volatile int c is never read. But it is marked as volatile, can the compiler eliminates it altogether? My testing ...
0
votes
1answer
25 views

C++ short enum problems with InterlockedCompareExchange16 (with VS2012) [closed]

Having referenced this question: Can an enum class be converted to the underlying type?. In my code I have effectively: enum class STATE : short { EMPTY, PRESENT, PARTIAL, }; volatile ...
2
votes
0answers
36 views

Memory Model: preventing store-release and load-aquire reordering

It is known that, unlike Java's volatiles, .NET's ones allow reordering of volatile writes with the following volatile reads. When it is a problem MemoryBarier is recommended to be placed between ...
0
votes
2answers
58 views

Java sharing an object between threads

I have a database object which stores objects in various data structures. Several threads access this database, but the database is not always up to date. If I change the name of the object in one ...
3
votes
1answer
46 views

Making variable volatile in subclass, in Java

I've come across the following situation: public class Foo { private boolean valid; ... } public class ConcurrentFoo extends Foo { ... } Since ConcurrentFoo is a subclass to be ...
1
vote
1answer
42 views

Code runs out of order on the same thread

We all know Java optimises our code quite thoroughly and we all love it. Well, most of the time. Below is a piece of code that really messes with my head: public class BrokenOptimizationTest { /** ...
1
vote
1answer
78 views

Do both c# and java's volatile keyword behave the same way?

I know in java, if you have multiple threads accessing a variable that isn't marked as volatile, you could get some unexpected behavior. Example: private boolean bExit; while(!bExit) { ...
3
votes
1answer
54 views

Java volatile variable doesn't behave correctly.

public class MyThread { volatile static int i; public static class myT extends Thread { public void run () { int j = 0; while(j<1000000){ ...
8
votes
1answer
127 views

const volatile, register volatile, static volatile in C++

I am wondering about the different uses of the volatile keyword in combination with register, const and static keywords. I am not sure what are the effects, so I think: register volatile int T=10; ...
0
votes
0answers
7 views

Is there a need for volatile keyword in a non-cached systems?

I was just wondering that is it really needed in non-cached systems? As there is no cache, so there is no chance of optimization. Please correct me if i am missing something. Thanks.
-1
votes
2answers
52 views

Java - volatile variable is not updating

I'm working on an interactive sorting application in JavaFx: The numbers are represented by rectangles Every time two numbers are swapped the rectangles are swapped(using timeline - animation) ...
0
votes
1answer
64 views

Does using volatile to publish immutable objects are safe?

Recently I read "Java concurrency in practice" Section --> "3.4.2 Example: Using volatile to publish immutable objects". However; I can't quietly understand it. Here is the situation! Immutable ...
1
vote
5answers
134 views

Does this paragraph allow an implementation to optimize out volatile accesses in C? [duplicate]

The C Standard says An actual implementation need not evaluate part of an expression if it can deduce that its value is not used and that no needed side effects are produced (including any caused ...
2
votes
3answers
63 views

Access to volatile fields through local variables

This question is somewhat continuation and expansion of this one, as I think perfect question: How does assigning to a local variable help here? This question based on Item 71 of Effective Java, ...
1
vote
7answers
113 views

Volatile keyword in C [duplicate]

I am writing program for ARM with Linux environment. its not a low level program, say app level Can you clarify me what is the difference between, int iData; vs volatile int iData; Does it have ...
1
vote
2answers
51 views

Why is discarding the volatile qualifier in a function call a warning?

(Before I start: I know there are existing questions on this topic, but none I've found answer why this is an issue. I do it regularly and would like to know if I am creating potential problems.) ...
1
vote
2answers
69 views

Why does CopyOnWriteArrayList.get need no synchronization?

just had a look at class CopyOnWriteArrayList and I wondered why its get(...) method doesn't need any synchronization. The add(...) and set(...) methods change the underlying array in a mutex block ...
5
votes
1answer
105 views

Volatile in C and Cpp under linux environment [duplicate]

I am writing program for ARM with Linux environment. its not a low level program, say app level Can you clarify me what is the difference between, int iData; vs volatile int iData; Does it have ...
0
votes
0answers
53 views

How do I get info from the stack, using inline assembly, to program in c?

I have a task to do and I'm asking for some help. (on simple c lang') What I need to do? I need to check every command on the main c program (using interrupt num 1) and printing a message only if the ...
2
votes
4answers
65 views

acquire & release semantics implied during a lock?

The volatile keyword is used to protect fields from certain compiler optimizations: For non-volatile fields, optimization techniques that reorder instructions can lead to unexpected and ...
0
votes
1answer
68 views

CUDA atomic function usage with volatile shared memory

I have a CUDA kernel that needs to use an atomic function on volatile shared integer memory. However, when I try to declare the shared memory as volatile and use it in an atomic function, I get an ...
0
votes
5answers
54 views

Java volatile on primitivs [duplicate]

Why do we need volatile on primitives? The most common example that I found was that: volatile boolean shutdownRequested; ... public void shutdown() { shutdownRequested = true; } public void ...
3
votes
1answer
108 views

java - alternatives for volatile array

From other questions, I learned that the elements of a volatile array are not volatile. Only the reference itself is volatile. volatile[] int data; Thread A: data[4] = 457; Thread B: ...
0
votes
3answers
58 views

Volatile arraylist not acting as expected

I am writing a multi-threaded platform game. One thread does the painting job, the other thread, runs the game logic. I have an array-list that both threads need to access at the same time. I am ...
3
votes
1answer
85 views

Is it necessary to make this variable volatile?

I was going through an "JAX London 2011" presentation on "Modern Java Concurrency". Between the time duration 43:20 - 43:40, a person from the audience says the shutdown variable in the code below ...
0
votes
3answers
72 views

Thread value not cached by threads even without volatile?

class Counter { public int i=0; public void increment() { i++; System.out.println("i is "+i); System.out.println("i/=2 executing"); i=i+22; ...
0
votes
0answers
9 views

JRuby volatility inside mutex#sychronize

in the JRuby github wiki, it lists "Using thread-synchronization primitives like Mutex." as one of the things that are volatile. My question is does this only apply to the mutex object itself, or also ...
3
votes
4answers
101 views

Declaring an object as volatile

If you declare a member variable as volatile in Java, does this mean that all the object's data is stored in volatile memory, or that the reference to the object is stored in volatile memory? For ...
26
votes
4answers
669 views

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

In answering this question a further question about the OP's situation came up that I was unsure about: it's mostly a processor architecture question, but with a knock-on question about the C++ 11 ...
3
votes
2answers
67 views

What is the difference between sequential consistency and atomicity?

I read that java volatile are sequential consistent but not atomic. For atomicity java provides different library. Can someone explain difference between two, in simple english ? (I believe the ...
2
votes
1answer
98 views

Proper use of 'volatile' in this case (C)?

I have a structure that holds several pointers. These pointers can be changed by several different threads. These threads update the struct by changing the pointer so that it points at another memory ...
0
votes
2answers
58 views

Constructor called in Thread 1, fields accessed exclusively in Thread 2 - volatile needed?

I have a class that is being instantiated by the main thread. This class then spawns a second thread, the processing thread. The processing threads calls certain methods (handling methods) of the ...
1
vote
2answers
33 views

volatile keyword for objects in C++

I have a thread safe counter object( it's a class which uses std::atomic load() and store() ) as one of the class members. Thread 1 increments the counter and Thread 2 reads the counter. Usually, ...
7
votes
2answers
99 views

What does a LoadLoad barrier really do?

In Java, when we have two threads sharing the following variables: int a; volatile int b; if thread 1 does: a = 5; b = 6; Then a StoreStore barrier is inserted between these two instructions and ...
-2
votes
4answers
105 views

How can Runnable modify a final local variable [closed]

I was trying to find out when my user interface is running and had the clever idea of posting a runnable to the uiThread whose only job would be to set a flag. I tried to use a volatile keyword on ...
1
vote
1answer
208 views

When to use volatile with shared CUDA Memory

Under what circumstances should you use the volatile keyword with a CUDA kernel's shared memory? I understand that volatile tells the compiler never to cache any values, but my question is about the ...
0
votes
0answers
61 views

Is it possible to use a global variable as volatile in a part of code and non-volatile in the other part

In B.h volatile int y; Class B { fooB(int); } In A.cpp foo (int x) { return 2*x; } foo(y); // Here is the issue When I tried to do this I faced a compilation problem, given that I ...
4
votes
2answers
319 views

Volatile function

Summary: What does the keyword volatile do when applied to a function declaration in C and in C++? Details: I see that it's possible to compile a function that is marked as volatile. However, I'm ...
0
votes
1answer
67 views

Volatile Singleton member?

I have a state engine that uses a Singleton software design pattern. The state engine can be accessed by multiple threads. The object is initialized from the main thread at program start up and is not ...
1
vote
3answers
129 views

Synchronize write access to Volatile field (Cheap read-write block)

Let's say I have the following class that will be read heavily, but only written to occasionally. It will be used in a multi-threaded web app, so it needs to be thread safe: public class Foo { ...
4
votes
2answers
214 views

Volatile fence demo?

Im trying to see how the fence is applied. I have this code (which Blocks indefinitely): static void Main() { bool complete = false; var t = new Thread(() => { bool toggle = ...
4
votes
5answers
212 views

Safe to use volatile bool to force another thread to wait? (C++)

Everything I've read about volatile says it's never safe, but I still feel inclined to try it, and I haven't seen this specific scenario declared unsafe. I have a separate thread that renders a ...
5
votes
8answers
291 views

benchmarking, code reordering, volatile

I decide I want to benchmark a particular function, so I naïvely write code like this: #include <ctime> #include <iostream> int SlowCalculation(int input) { ... } int main() { ...
6
votes
3answers
219 views

Volatile vs VolatileRead/Write?

I can't find any example of VolatileRead/write (try...) but still: When should I use volatile vs VolatileRead? AFAIK the whole purpose of volatile is to create half fences so: For a READ ...
0
votes
0answers
126 views

lose some const-volatile qualifiers in order to call [closed]

I am writing the following code to test bind1st. I recived the following error error C3848: expression having type 'const Multiply' would lose some const-volatile qualifiers in order to call 'int ...
5
votes
2answers
97 views

Read an up-to date value from an Interlocked variable, with only one write on the variable

I would like to create a class with two methods: void SetValue(T value) stores a value, but only allows storing a single value (otherwise it throws an exception). T GetValue() retrieves the value ...
2
votes
3answers
78 views

Java is using volatile keyword memory efficient?

If using 1 volatile variable, does it turn off cpu caching in for other related non volatile variables as well?
10
votes
3answers
389 views

'Effective Java' conundrum: Why is volatile required in this concurrent code?

I'm working my way through item 71, "Use lazy initialization judiciously", of Effective Java (second edition). It suggests the use of the double-check idiom for lazy initialization of instance fields ...
1
vote
1answer
143 views

Using WinAPI to retrieve a class pointer?

BEFORE anyone asks, there is no ill intent here. This project is merely for educational and personal use, and, at the most, is designed to be a "cheat engine" or possible future anti-cheat mechanism. ...
1
vote
5answers
110 views

is AtomicBoolean needed to create a cancellable thread?

I often use the following pattern to create a cancellable thread: public class CounterLoop implements Runnable { private volatile AtomicBoolean cancelPending = new AtomicBoolean(false); ...

1 2 3 4 5 10