Tagged Questions
18
votes
7answers
4k views
What is the C++ memory model for concurrency?
What is the C++ memory model for concurrency as defined by current standard?
What about upcoming C++0x standard? Will it change the memory model to support concurrency better?
15
votes
2answers
2k views
C++0x memory model and speculative loads/stores
So I was reading about the memory model that is part of the upcoming C++0x standard. However, I'm a bit confused about some of the restrictions for what the compiler is allowed to do, specifically ...
11
votes
5answers
2k views
Peterson algorithm in Java?
Is there example implementation of Peterson algorithm for mutual exclusion in Java?
4
votes
2answers
87 views
Java Memory model : visibility for volatile fields
Does making a class field volatile prevent all memory visibility issues with it in a concurrent situation ? Is it possible that for below class , a thread that gets a reference of a Test object sees x ...
4
votes
3answers
122 views
Concurrency and memory models
I'm watching this video by Herb Sutter on GPGPU and the new C++ AMP library. He is talking about memory models and mentions Weak Memory Models and then Strong Memory Models and I think he's referring ...
4
votes
2answers
92 views
visibility of side effects when creating and joining threads
When are writes that are performed by one thread visible to a different thread when there are no synchronized blocks and no volatile variables? Here is a simplified quicksort example:
int middle = ...
3
votes
2answers
115 views
Does a lock around a write guarantee fresh read in another thread? (.Net, memory model)
Say I have a property whose setter is protected by a lock, but without any lock around the getter, e.g.
private long _myField;
public long MyProperty
{
get { return _myField; }
set { ...
3
votes
5answers
224 views
Double-Check Idiom using booleans
Take the following java code:
public class SomeClass {
private boolean initialized = false;
private final List<String> someList;
public SomeClass() {
someList = new ...
3
votes
2answers
135 views
During a data race can a thread ever read initial null value of volatile variable? especially when a non null value is assigned to it in constructor?
What puzzles me is this.
Java doc of HashEntry in ConcurrentHashMap (jdk1.6.0_16)
...Because the value field is volatile, not final, it is legal wrt the Java Memory Model for an unsynchronized ...
2
votes
2answers
72 views
Are all side-effects of executor tasks visible after invokeAll?
If I submit some tasks to an Executor using invokeAll, am I guaranteed that the submitted thread sees all the side effects of the task executions, even if I don't call get() on each of the returned ...