I read a lot of posts here with the question if the standard containers for C++ (like \"list\" or \"map\" are thread safe and all of them said that it is not in general. Par
Before C++11, there was no notion of "thread" in the Standard. So, the question whether a container is thread-safe is meaningless in context of C++03.