Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

User-mode synchronization library for C++ [closed]

Does anyone know of a Windows user-mode thread synchronization library for C++ (utilizing spin locks / atomic operations)? I only need mutexes (~critical sections), but condition variables would be a plus.

like image 804
Vladimir Panteleev Avatar asked Oct 18 '25 20:10

Vladimir Panteleev


1 Answers

You have the win 32 one: http://msdn.microsoft.com/en-us/library/ms682530%28VS.85%29.aspx. You have a complete explanation of synchronization using this library here.

like image 135
Patrice Bernassola Avatar answered Oct 20 '25 09:10

Patrice Bernassola