snp-lab-code/P10_Sync/Sync/mutex/README_MAC_OSX

8 lines
170 B
Plaintext

For Mac users
"pthread_mutex_lock(&lock)" is slow on MACs compared to Linux:
use instead: "while (pthread_mutex_trylock(&lock) > 0) {} ;"
which implements a spin lock