Tagged Questions
The volatile tag has no wiki summary.
76
votes
8answers
11k views
Volatile vs. Interlocked vs. lock
Let's say that a class has a public int counter field that is accessed by multiple threads. This int is only incremented or decremented.
To increment this field, which approach should be used, and ...
44
votes
10answers
7k views
Do you ever use the volatile keyword in Java?
In work today, I came across the volatile keyword in Java. Not being very familiar with it, I found this explaination: http://www.ibm.com/developerworks/java/library/j-jtp06197
Given the detail in ...
33
votes
7answers
4k views
Why is volatile not considered useful in multithreaded C or C++ programming?
As demonstrated in this answer I recently posted, I seem to be confused about the utility (or lack thereof) of volatile in multi-threaded programming contexts.
My understanding is this: any time a ...
33
votes
4answers
6k views
How to illustrate usage of volatile keyword in C#
I would like to code a little program which visually illustrates the behavior of the 'volatile' keyword. Ideally, it should be a program which performs concurrent access to a non volatile static field ...
31
votes
3answers
2k views
Why is the volatile qualifier used through out std::atomic?
From what I've read from Herb Sutter and others you would think that volatile and concurrent programming were completely orthogonal concepts, at least as far as C/C++ are concerned.
However, in GCC ...
27
votes
4answers
1k views
Is volatile expensive?
After reading http://gee.cs.oswego.edu/dl/jmm/cookbook.html about the implementation of volatile, especially section "Interactions with Atomic Instructions" I assume that reading a volatile variable ...
23
votes
4answers
2k views
Java: volatile guarantees and out-of-order execution
IMPORTANT EDIT I know about the "happens before" in the thread where the two assignments are happening my question is would it be possible for another thread to be reading "b" non-null while "a" is ...
23
votes
6answers
5k views
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
int main(int argc, char ** argv)
{
int i = 0;
i = i++ + ++i;
printf("%d\n", i); // 3
i = 1;
i = (i++);
printf("%d\n", i); // 2 Should be 1, no ?
volatile int u = 0;
u = u++ ...
22
votes
14answers
4k views
C++: When Has The volatile Keyword Ever Helped You?
I'd like to know of an example of a problem which was solved by adding the volatile keyword.
I'm sure it has helped somebody solve something, but I don't know where I would actually apply it.
In my ...
21
votes
8answers
1k views
How do I track down the cause of a StackOverflowException in .NET?
I get a StackOverflowException when I run the following code:
private void MyButton_Click(object sender, EventArgs e) {
MyButton_Click_Aux();
}
private static volatile int reportCount;
private ...
19
votes
4answers
397 views
If volatile is useless for threading, why do atomic operations require pointers to volatile data?
I've been reading from many sources that the volatile keyword is not helpful in multithreaded scenarios. However, this assertion is constantly challenged by atomic operation functions that accept ...
18
votes
3answers
850 views
Does Monitor.Wait ensure that fields are re-read?
It is generally accepted (I believe!) that a lock will force any values from fields to be reloaded (essentially acting as a memory-barrier or fence - my terminology in this area gets a bit loose, I'm ...
17
votes
3answers
407 views
AtomicReferenceFieldUpdater - methods set, get, compareAndSet semantics
From the Java AtomicReferenceFieldUpdater docs:
Note that the guarantees of the compareAndSet method in this class are
weaker than in other atomic classes. Because this class cannot ensure
...
17
votes
8answers
2k views
The need for volatile modifier in double checked locking in .NET
Multiple texts say that when implementing double-checked locking in .NET the field you are locking on should have volatile modifier applied. But why exactly? Considering the following example:
public ...
16
votes
4answers
237 views
How can assigning a variable result in a serious performance drop while the execution order is (nearly) untouched?
When playing around with multithreading, I could observe some unexpected but serious performance issues related to AtomicLong (and classes using it, such as java.util.Random), for which I currently ...
16
votes
5answers
615 views
Is `volatile` required for shared memory accessed via access function?
[edit] For background reading, and to be clear, this is what I am talking about: Introduction to the volatile keyword
When reviewing embedded systems code, one of the most common errors I see is the ...
16
votes
6answers
686 views
Thread Synchronisation 101
Previously I've written some very simple multithreaded code, and I've always been aware that at any time there could be a context switch right in the middle of what I'm doing, so I've always guarded ...
16
votes
8answers
713 views
May volatile be in user defined types to help writing thread-safe code
I know, it has been made quite clear in a couple of questions/answers before, that volatile is related to the visible state of the c++ memory model and not to multithreading.
On the other hand, this ...
15
votes
2answers
192 views
Java: volatile implied order guarantees
My question is an extension to this one: Java: volatile guarantees and out-of-order execution
To make it more concrete, let's say we have a simple class which can be in two states after it is ...
15
votes
1answer
310 views
Performance consequence of volatile member functions
I found a 2001 article on Dr Dobbs: volatile - Multithreaded Programmer's Best Friend. I've always found 'volatile' somewhat useless - at least as a qualifier on variables - as access to variables ...
15
votes
9answers
725 views
What kinds of optimizations does 'volatile' prevent in C++?
I was looking up the keyword volatile and what it's for, and the answer I got was pretty much:
It's used to prevent the compiler from optimizing away code.
There were some examples, such as when ...
15
votes
5answers
636 views
Volatile keyword in Java - Clarification
I am really confused about what I read about the applications of volatile keyword in java.
Is the following statement correct?
"a write to a volatile field happens before every subsequent read of ...
15
votes
4answers
718 views
Are volatile variable 'reads' as fast as normal reads?
I know that writing to a volatile variable flushes it from the memory of all the cpus, however I want to know if reads to a volatile variable are as fast as normal reads?
Can volatile variables ...
14
votes
7answers
4k views
Java: volatile boolean vs AtomicBoolean
What does AtomicBoolean do that a volatile boolean cannot achieve?
13
votes
4answers
1k views
volatile boolean vs. AtomicBoolean
I've looked at the other volatile vs. Atomicxxxx questions in SO (including this one) and have read the description of java.util.current.atomic, and am not quite satisfied with the nuances.
If I'm ...
12
votes
3answers
210 views
In Java should I copy a volatile reference locally before I foreach it
If I have the following
private volatile Collection<Integer> ints;
private void myMethod()
{
for ( Integer i : ints )
{
...
}
}
The ints collection is never changed but the ...
12
votes
2answers
1k views
11
votes
4answers
272 views
Are mutex lock functions sufficient without volatile?
A coworker and I write software for a variety of platforms running on x86, x64, Itanium, PowerPC, and other 10 year old server CPUs.
We just had a discussion about whether mutex functions such as ...
11
votes
8answers
460 views
Is volatile int in C as good as std::atomic<int> of C++0x?
I need to have atomic variables in my program. Previously I was using std::atomic<int>, but the platform in which I'm working now does not have a g++ compiler that supports C++0x. I used ...
11
votes
3answers
218 views
In C, if B is volatile, should the expression (void)(B = 1) read B
I work on compilers for a couple of embedded platforms. A user has recently complained about the following behaviour from one of our compilers. Given code like this:
extern volatile int ...
11
votes
7answers
507 views
Can I avoid using locks for my seldomly-changing variable?
I've been reading Joe Duffy's book on Concurrent programming. I have kind of an academic question about lockless threading.
First: I know that lockless threading is fraught with peril (if you don't ...
10
votes
8answers
465 views
What is wrong with this C code
I have a piece of code where I am trying to return the square of the value pointed to by *ptr.
int square(volatile int *ptr)
{
int a,b;
a = *ptr;
b = *ptr;
return a * b;
}
main()
{
...
10
votes
9answers
472 views
Volatile and multithreading: is the following thread-safe?
Assume there are two threads running Thread1() and Thread2() respectively. The thread 1 just sets a global flag to tell thread 2 to quit and thread 2 periodically checks if it should quit.
volatile ...
10
votes
4answers
620 views
Why not volatile on System.Double and System.Long?
A question like mine has been asked, but mine is a bit different. The question is, "Why is the volatile keyword not allowed in C# on types System.Double and System.Int64, etc.?"
On first blush, I ...
10
votes
4answers
1k views
When to use volatile with multi threading?
If there are two threads accessing a global variable then many tutorials say make the variable volatile to prevent the compiler caching the variable in a register and it thus not getting updated ...
10
votes
6answers
600 views
What is the purpose of 'volatile' keyword in C#
What is the purpose of 'volatile' keyword in C#?
Where would I need to use this keyword?
I saw the following statement, but I am unable to understand why volatile is required here?
internal ...
10
votes
7answers
663 views
How can I use the volatile keyword in Java correctly?
Say I have two threads and an object. One thread assigns the object:
public void assign(MyObject o) {
myObject = o;
}
Another thread uses the object:
public void use() {
myObject.use();
}
...
10
votes
4answers
3k views
When to use 'volatile' or 'Thread.MemoryBarrier()' in threadsafe locking code? (C#)
When should I use volatile/Thread.MemoryBarrier() for thread safety?
9
votes
1answer
106 views
If I declare an instance variable as volatile, will the object of this class be volatile?
Like:
class A
{
volatile int i;
};
A a;
My question is that will the entire a become cv qualified? May be a naive question.
9
votes
5answers
484 views
Using volatile keyword with mutable object
In Java, I understand that volatile keyword provides visibility to variables. The question is, if a variable is a reference to a mutable object, does volatile also provide visibility to the members ...
9
votes
4answers
632 views
Java seems to support volatile fields of type long, while C# does not - What are the reasons behind this?
Can anyone explain to me what the benefits and and drawbacks of the two different approaches are?
8
votes
1answer
102 views
what happens after writing to a volatile variable?
I wonder if writing to a volatile variable will force jvm to synchronize all non-volatile variables to the memory, so for example, what will happen in the following code:
volatile int x;
int y;
y=5; ...
8
votes
5answers
287 views
Should ALL global variables be volatile-qualified?
In this example, does correctness require global_value to be declared volatile?
int global_value = 0;
void foo () {
++ global_value;
}
void bar () {
some_function (++global_value);
foo ...
8
votes
2answers
312 views
Java: Caching of non-volatile variables by different threads
The situation is the following:
I have an object with lots of setters and getters.
Instance of this object is created in a one particular thread where all values are set. Initially I create an ...
8
votes
3answers
488 views
C++ - What does volatile represent when applied to a method?
If I have a C++ method declaration as follows:
class A
{
public:
double getPrice() volatile;
};
What does volatile represent here?
What could it be used for?
You might be interested in this ...
8
votes
5answers
320 views
Why doesn't gcc remove this check of a non-volatile variable?
This question is mostly academic. I ask out of curiosity, not because this poses an actual problem for me.
Consider the following incorrect C program.
#include <signal.h>
#include ...
8
votes
5answers
790 views
How do I declare an array created using malloc to be volatile in c++
I presume that the following will give me 10 volatile ints
volatile int foo[10];
However, I don't think the following will do the same thing.
volatile int* foo;
foo = malloc(sizeof(int)*10);
...
8
votes
2answers
637 views
How to declare array elements volatile in Java?
Is there a way to declare array elements volatile in Java? I.e.
volatile int[] a = new int[10];
declares the array reference volatile, but the array elements (e.g. a[1]) are still not volatile. So ...
8
votes
2answers
1k views
Volatile Struct Semantics
Is it sufficient to declare an instance of a structure-typed variable as volatile (if its fields are accessed in re-entrant code), or must one declare specific fields of the structure as volatile?
...
8
votes
5answers
468 views
What is the cost of the volatile keyword in a multiprocessor system?
we're running into performance issues, and one potential culprit is a centralized use of a volatile singleton. the specific code is of the form
class foo {
static volatile instance;
static object ...