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.