i'm trying to use the boost::unordered_map as a global variable, where two thread (with relative mutex) work on it. Although a simple version with an integer works, the boost::unordered_map version won't work.

In global.hpp: extern boost::unordered_map my_namespace::_cache;

In the main:

boost::unordered_map<std::string, my_namespace::MyStruct> my_namespace::_cache;
int main(int argc, char* argv[])
{
    boost thread1   //  write the unordered map
    boost thread2   //  " "
}

In thread1

#include "global.hpp"
//...
my_namespace::_cache[k].integer_field = 4;

In thread2

#include "global.hpp"
//...
my_namespace::_cache[k].integer_field--;

the values expected after the first call should be 3, instead is -1. I think that it is an initialization/allocation problem

Thanks in advance.

link|improve this question
That's probably related to static initialization order fiasco – jrok Dec 27 '11 at 11:35
i've changed the way of handle the problem and now it works. thank you – user1117467 Dec 27 '11 at 13:40
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.