Hi,
I'm concerned about the thread safety of the STL supplied with gcc.
So my question is basically : is it thread safe or not ? ;-)
By that I mean: do I have to protect calls to (for instance, could be any
read/write operation on an STL component) avector.push_back() myself using
mutex-operations (and the like) or will push_back protect itself from
another push_back (from another thread) on the same vector?
Since there's something out there called STLport, which claims to be
thread-safe, I've got a bad feeling about the STL that ships with gcc.
Pieter