Comment PLUS: Lack of MT Safety ! (Score 0) 239
Imagine a std::string object, which is accidentally shared between two threads. Both can alter the object, potentially at the same time.
BOOM - heap corruption likely.
C++ lacks the notion of thread-local and thread-global data in order to properly detect such bugs.
BOOM - heap corruption likely.
C++ lacks the notion of thread-local and thread-global data in order to properly detect such bugs.