I\'m trying to make a C++ API (for Linux and Solaris) thread-safe, so that its functions can be called from different threads without breaking internal data structures. In m
"A mutex requires an OS context switch. That is fairly expensive. "
For more info: Futex
Numbers everybody should know