I am reading about const
and thread safety in C++11, here is a relevant Stack Overflow question, and here is also a video by Herb Sutter. The word "synchronized" is often mentioned. But what does "synchronized" exactly mean?
For example, the follwing two lines are from Herb's video
"copying from the same object in multiple threads without synchronization" (at 13:40)
"... A const object is fully thread-safe(truly immutable or internally synchronized)" (at 15:03)