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 ...
25
votes
2answers
350 views

What are the similarities between the Java memory model and the C++11 memory model? [closed]

The new c++ standard introduces the notion of a memory model. There were already questions on SO about it, what does it mean, how does it change the way we write code in c++ and so on. I'm interested ...
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?
17
votes
2answers
321 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 ...
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 ...
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 ...
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 ...
3
votes
1answer
336 views

C++0x: memory ordering

The current C++0x draft states on section 29.3.9 and 29.3.10, pages 1111-1112 that in the following example: // Thread 1 r1 = y.load(memory_order_relaxed); x.store(1, memory_order_relaxed); // ...
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() { ...
0
votes
1answer
118 views

Qt4 Creator/QMAKE equivalent to “-mcmodel=medium” GCC compiler settings

I'm using Qt Creator to create a GUI for a fairly memory intensive C++ application on Linux. In order for the application to run properly, the -mcmodel=medium compiler flag must be set during ...