The new machine model of C++0x allows for multi-processor systems to work reliably, wrt. to reorganization of instructions.

As Meyers and Alexandrescu pointed out the "simple" Double-Checked Locking Pattern implementation is not safe in C++03

Singleton* Singleton::instance() {
  if (pInstance == 0) { // 1st test
    Lock lock;
    if (pInstance == 0) { // 2nd test
      pInstance = new Singleton;
    }
  }
  return pInstance;
}

They showed in their article that no matter what you do as a programmer, in C++03 the compiler has too much freedom: It is allowed to reorder the instructions in a way that you can not be sure that you end up with only one instance of Singleton.

My question is now:

  • Do the restrictions/definitions of the new C++0x machine model now constrain the sequence of instructions, that the above code would always work with a C++0x compiler?
  • How does a safe C++0x-Implementation of this Singleton pattern now looks like, when using the new library facilities (instead of the mock Lock here)?
link|improve this question

2  
Use a Singleton- get what you pay for. – DeadMG May 15 '11 at 13:44
1  
Also, don't forget that C++0x now guarantees initialization of static variables to be thread-safe. See §6.7/4: If control enters the declaration concurrently while the variable is being initialized, the concurrent execution shall wait for completion of the initialization; i.e. you could use something like static Singleton* ptr = new Singleton(); return ptr;. – Vitus May 15 '11 at 17:23
@Vitus: Indeed. But it doesn't tell where you pay for the lock, then. The formulation clearly requires some kind of lock around the static variable, and it is specifically that lock that Double-Checked Locking is trying to avoid. – towi May 16 '11 at 16:52
feedback

2 Answers

up vote 2 down vote accepted

If pInstance is a regular pointer, the code has a potential data race -- operations on pointers (or any builtin type, for that matter) are not guaranteed to be atomic (EDIT: or well-ordered)

If pInstance is an std::atomic<Singleton*> and Lock internally uses an std::mutex to achieve synchronization (for example, if Lock is actually std::lock_guard<std::mutex>), the code should be data race free.

Note that you need both explicit locking and an atomic pInstance to achieve proper synchronization.

link|improve this answer
thanks! atomic<Instance*>, thats a good hint. – towi May 15 '11 at 16:07
Hmm, I wonder. The issue (Meyers/Alexandrescu) seems, the Compiler might reorder the instructions, so in Thread A the pInstance will get its value before Singleton is fully created, stopped, and Thread B sees the the filled pInstance and uses it. Does an atomic<Singleton*> really protect me there? I can not see that. I might need a fully-blown [Memory-Ordering][1]. [1][justsoftwaresolutions.co.uk/threading/… – towi May 15 '11 at 16:21
@towi - Yes, it will. All operations on std::atomic<>s default to fully sequentially consistent memory ordering, and weaker orderings must be explicitly requested. Sequential consistency means that each thread sees everything happen in exactly the same order, as though all operations were fully serialized. – JohannesD May 15 '11 at 17:22
@towi - To elaborate: this single total order is over all properly synchronized operations in the whole program, not only over the operations of individual atomic variables. Specifically, atomic operations synchronize with the mutex lock/unlock primitives, so that the comparison and locking in the above code may not be reordered. I think. – JohannesD May 15 '11 at 17:39
feedback

C++11 doesn't change the meaning of that implementation of double-checked locking. If you want to make double-checked locking work you need to erect suitable memory barriers/fences.

link|improve this answer
Ok. What's the Stdlibs solution there? Do I need atomic_xxx_fence() with its explicit aquire and release operations in there, or do I use a higher level interface from the Stdlib which already uses that? – towi May 15 '11 at 14:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.