Windows threads are mutually exclusive and synchronized

Source: Internet
Author: User

The investigations over the past few days have finally understood that mutual exclusion and synchronization are not a concept.

Mutex is used to prevent multiple threads from accessing the same object, resulting in inconsistent object states.

Synchronization aims to control the execution sequence of each thread.

Windows provides the following mechanisms for mutual exclusion and synchronization: critical session, mutex, event, and semaphore ).

Among them, the critical section can only be used in the same process, so it has a high effect. The other three objects are Windows kernel objects that can be used across processes.

Use critical session and mutex to achieve mutual exclusion between threads. The critical session and mutex are basically the same. The difference is that the critical session can only be in the same process, so the speed is fast and the mutex speed is slow, but it can be cross-process.

Use event to synchronize threads.

Use semaphore to coordinate threads.

The difference between semaphore and mutex (or critical session) Is that mutex is mainly used for mutual expansion, and semaphore implements the counting mechanism, which is mainly used to coordinate resource access.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.