The hidden callout: The destructor

20 · Raymond Chen · Nov. 11, 2020, 4:01 p.m.
This is a general problem, but I’m going to give a specific example. C++ standard library collections do not support concurrent mutation. It is the caller’s responsibility to serialize mutation operations, and to ensure that no mutation occurs at the same time as any other operation. The post The hidden callout: The destructor appeared first on The Old New Thing....