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.
4
votes
1answer
77 views
Strange behavior with volatile write on class member vs struct member
I'm developing a component which needs a long type with volatile semantics.
As there's no volatile long in .NET, I created a simple wrapper type which handles the read/write access using Volatile ...
2
votes
2answers
86 views
Is this a better version of Double Check Locking without volatile and synchronization overhead
Below code snippet is from Effective Java 2nd Edition Double Checked Locking
// Double-check idiom for lazy initialization of instance fields
private volatile FieldType field;
FieldType getField() ...
4
votes
2answers
118 views
Why Double checked locking is 25% faster in Joshua Bloch Effective Java Example
Hi below is the snippet from Effective Java 2nd Edition. Here the author claims the following piece of code is 25% faster more than in which u do not use result variable.
According to the book "What ...
1
vote
1answer
19 views
Is synchronized volatile boolean equal to atomicBoolean?
Volatile should be used when we are doing only read operation on variable, as value updated by one thread will be visible to the other even if the former thread looses CPU and exits the synchronized ...
0
votes
2answers
88 views
How to set volatile array to zero using memset?
volatile uint8_t reset_mask[768] = {0}
Now I am setting the values of this array elements to 1 during one of internal operations.
In another functional call, I need to set all the elements of this ...
0
votes
1answer
40 views
User Interface doesn't update output with position data
I am creating a user interface using (Qt) and I am attaching it to my C/C++ motion application using shared memory as my form of Inter Process Communication.
I currently have a class which I created ...
1
vote
2answers
70 views
With double-checked locking, does a put to a volatile ConcurrentHashMap have happens-before guarantee?
So far, I have used double-checked locking as follows:
class Example {
static Object o;
volatile static boolean setupDone;
private Example() { /* private constructor */ }
getInstance() {
...
11
votes
3answers
125 views
Happens-before relationships with volatile fields and synchronized blocks in Java - and their impact on non-volatile variables?
I am still pretty new to the concept of threading, and try to understand more about it. Recently, I came across a blog post on What Volatile Means in Java by Jeremy Manson, where he writes:
When ...
0
votes
2answers
24 views
Does happen-before in Java new memory model also apply to the member of a object which is declared as volatile?
In the new Java memory model, any write to a variable is guaranteed to be completed before the next thread read it.
I wonder if this is also the case for variables that are member of this object.
...
-1
votes
3answers
64 views
Singleton instance instantiation
I am starting to get used to the keywords static and volatile in Java. In regards to a singleton class I am building, why do I see the following design?
public class Singleton{
private static ...
0
votes
2answers
36 views
Doubts related to volatile , immutable objects, and their use to acheive synchronization
I was reading book "java concurrency in practice" and end up with some doubts after few pages.
1) Voltile with non premitive data types :
private volatile Student s;
what is significance of ...
5
votes
2answers
101 views
Overloading on const and volatile- why does it work by reference?
I have the code:
#include "stdafx.h"
#include <iostream>
using namespace std;
void func(const int& a)
{
std::cout << "func(const)" << std::endl;
}
void func(volatile ...
6
votes
2answers
93 views
Do volatile variables require synchronized access?
I'm having a little difficulty understanding volatile variables in Java.
I have a parameterized class that contains a volatile variable like so:
public class MyClass<T> {
private ...
5
votes
4answers
89 views
How to decompile volatile variable in Java?
I have been told that the volatile keyword could add memory barrier before write operation of the variable. So i write the code:
public class Test {
private Object o;
public Test() {
...
0
votes
3answers
56 views
is the volatile map can be null after initial in java?
public class SipResponseCollection {
private final static Logger LOGGER=Logger.getLogger(SipResponseCollection.class);
private volatile Map<String, List<SipResponse>> map = new ...
0
votes
1answer
114 views
Restrictions on non volatile variables in C
I Would like to understand what Restrictions if any does the compiler have with regards to non volatile variables in C.
I'm not sure if its true or not, but I've been told that if you have the ...
2
votes
2answers
47 views
local memory visibility with volatile write
As I understood new java memory model mandates that access to volatile variables is not reordered with access to other variables and thus following code is correct:
Map configOptions;
char[] ...
-1
votes
1answer
57 views
volatile multi-threading data inconsistency
I thought I had taken the necessary steps to prevent data races but it seems it has not worked...
I've coded a hierarchical state machine to implement a coin quiz game.
One of my JUnit tests checks ...
2
votes
2answers
119 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
32 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 ...
3
votes
1answer
93 views
Memory Model: preventing store-release and load-acquire 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
63 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
49 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
46 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
84 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
64 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
170 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
8 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
57 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
74 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
137 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
67 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
131 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
57 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
78 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
119 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
64 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
67 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
95 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
56 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
119 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
79 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
91 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
75 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
11 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
109 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
685 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
80 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
107 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
61 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 ...


