Quantcast
Viewing latest article 7
Browse Latest Browse All 13

Acquire barrier in the double checked locking pattern

In C++ and the Perils of Double-Checked Locking, the authors give an example on how to implement the pattern correctly. Singleton* Singleton::instance () { Singleton* tmp = pInstance; ... // insert memory barrier (1) if (tmp == 0) { Lock lock; tmp = pInstance; if (tmp == 0) { tmp = new Singleton; ... // […]

The post Acquire barrier in the double checked locking pattern appeared first on BlogoSfera.


Viewing latest article 7
Browse Latest Browse All 13

Trending Articles