Tagged Questions

259
votes
5answers
16k views

C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?

C++11 introduced a standardized memory model, but what exactly does that mean? And how is it going to affect C++ programming? Herb Sutter says here that, The memory model means that C++ code ...
20
votes
3answers
235 views

Is it possible to observe a partially-constructed object from another thread?

I've often heard that in the .NET 2.0 memory model, writes always use release fences. Is this true? Does this mean that even without explicit memory-barriers or locks, it is impossible to observe a ...
17
votes
2answers
322 views

What does `std::kill_dependency` do, and why would I want to use it?

I've been reading about the new C++11 memory model and I've come upon the std::kill_dependency function (§29.3/14-15). I'm struggling to understand why I would ever want to use it. I found an ...
13
votes
2answers
634 views

Where can I find good, solid documentation for the C++0x synchronization primitives?

I've seen articles on ::std::thread and ::std::forward and such, but I have seen no good articles on ::std::atomic. There is, of course, the standards proposal paper, but I haven't seen any good ...
12
votes
1answer
649 views

Thread.VolatileRead Implementation

I'm looking at the implementation of the VolatileRead/VolatileWrite methods (using Reflector), and i'm puzzled by something. This is the implementation for VolatileRead: ...
9
votes
4answers
418 views

Does the Java Memory Model (JSR-133) imply that entering a monitor flushes the CPU data cache(s)?

There is something that bugs me with the Java memory model (if i even understand everything correctly). If there are two threads A and B, there are no guarantees that B will ever see a value written ...
8
votes
1answer
307 views

What does [[carries_dependency]] attribute mean?

Can someone explain it in a language that mere mortals understand?
7
votes
6answers
398 views

In C/C++, are volatile variables guaranteed to have eventually consistent semantics betwen threads?

Is there any guarantee by any commonly followed standard (ISO C or C++, or any of the POSIX/SUS specifications) that a variable (perhaps marked volatile), not guarded by a mutex, that is being ...
7
votes
4answers
1k views

Does Delphi have any equivalent to C's volatile variable?

In C and C++ a variable can be marked as volatile, which means the compiler will not optimize it because it may be modified external to the declaring object. Is there an equivalent in Delphi ...
6
votes
5answers
2k views

Does Interlocked.CompareExchange use a memory barrier?

I'm reading Joe Duffy's post about Volatile reads and writes, and timeliness, and i'm trying to understand something about the last code sample in the post: while (Interlocked.CompareExchange(ref ...
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 = ...
4
votes
4answers
301 views

When do writes/reads affect main memory?

When I write a value into a field, what guarantees do I get regarding when the new value will be saved in the main memory? For example, how do I know that the processor don't keep the new value in ...
3
votes
3answers
457 views

Bound view model property updated in background thread; will the UI always see the updated value?

If I have some (non-volatile) data bound to the UI via a view model, and I update this data from a background thread without locking anything, and trigger a PropertyChanged event, am I guaranteed that ...
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 ...
2
votes
1answer
99 views

C++ static variable inialization and threads

I have the following bit of C++11 code that uses threads and static variable initialisations. My question is: What guarantees or assurances does the C++ language make about the single initialisation ...
2
votes
2answers
71 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 ...
2
votes
2answers
372 views

python threading: memory model and visibility

Does python threading expose issues of memory visibility and statement reordering as Java does? Since I can't find any reference to a "Python Memory Model" or anything like that, despite the fact that ...
2
votes
4answers
266 views

How does memory fences affect “freshness” of data?

I have a question about the following code sample (taken from: http://www.albahari.com/threading/part4.aspx#_NonBlockingSynch) class Foo { int _answer; bool _complete; void A() { ...
2
votes
5answers
261 views

Memory barriers and large structs?

Let's say I've got a struct that consist of 100 bytes. What guarantees have I got about the following code? m_myLargeStruct = someValue; // copying 100 bytes Thread.MemoryBarrier(); // Executed by ...
1
vote
5answers
301 views

Using memory barriers

In the following code sample, does the memory barrier in FuncA is required to ensure that the most up-to-date value is read? class Foo { DateTime m_bar; void FuncA() // invoked by thread X ...
0
votes
3answers
159 views

A question about Java Memory Model

Several days before, I raised a question to ask how using the keyword 'volatile' and I got the answer. Here I'd like to thanks again for the people who helped me. However, a new question rose in my ...