Intel® oneAPI Threading Building Blocks
Ask questions and share information about adding parallelism to your applications when using this threading library.

monitors and blocking synchronization

praveen_satishgmail_
267 Views
Hi all ..
i am a student and i am working on monitors and blocking synchronization can any one suggest good reference to this and help me out with some good examples in c++ if possible .. i need examples on mutex flavours using tbb...plzz reply to this as soon as possible..
0 Kudos
1 Reply
Dmitry_Vyukov
Valued Contributor I
267 Views
Hi all ..
i am a student and i am working on monitors and blocking synchronization can any one suggest good reference to this and help me out with some good examples in c++ if possible

You may see implementations of mutexes and other blocking synchronization primitives in TBB:
http://www.threadingbuildingblocks.org/file.php?fid=77
in Win32 Pthreads:
http://sourceware.org/pthreads-win32/
In boost.thread:
http://www.boost.org/doc/libs/1_40_0/doc/html/thread.html
And in numerious other libraries like ACE, POCO, etc.

0 Kudos
Reply