Is there a way to automatically lock an STL container on access, without having to lock and release around it?
|
|
|||||||
|
|
|
After much Googling, it seems the way to do it is to create a wrapper around your container. e.g.:
|
||||
|
|
|
The currrent C++ standard does not say anything about thread safety for STL containers. Officially it is possible for an STL implementation to be thread safe, but it's very unusual. If your STL implementation is not thread safe, then you will need to "lock and release around it" or find some other way to coordinate access. You may be interested in Intel's Threading Building Blocks which includes some thread safe containers similar to STL containers. |
||
|
