Quantcast
Channel: BlogoSfera » locking
Viewing all articles
Browse latest Browse all 13

Acquire barrier in the double checked locking pattern

$
0
0

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 all articles
Browse latest Browse all 13

Trending Articles