Win32 Threads

Synchronization is a very hot topic in all threading subjects. Almost all the programs using threading are in some way will be implementing a synchronization object in their source. Windows provides a number of synchronization objects and objects that are wait able on the synchronization …

    Multithreading is a vast subject. This article aims to cover only some basics on multithreading. It also gives a small sample code to write a Multi threaded program in Win32. Multithreading is nothing but executing operations parallel. A multi-threaded operation will usually be embedded …