Get premium membership and access questions with answers, video lessons as well as revision papers.

Interrupt disabling and enabling is a common approach to implementing mutual exclusion, what are its advantages and disadvantages?

      

Interrupt disabling and enabling is a common approach to implementing mutual exclusion,
what are its advantages and disadvantages?

  

Answers


Faith
Advantages:
- It actually succeeds in enforcing mutual exclusion.

Disadvantages:
- You have the result of busy waiting again, a poor approach. All other processes must simply wait for
the currently running one to finish, and any IRQs sent to the CPU during that period will be ignored.
Which, y’know, impedes progress.
- Obviously, only works in kernel mode.
- Does not work on multiprocessor systems.
Titany answered the question on April 26, 2022 at 05:25


Next: Why is turn passing a poor solution to the critical sections problem?
Previous: What is a test-and-set instruction? How can it be used to implement mutual exclusion? Consider using a fragment of psuedo-assembly language aid you explanation

View More Operating Systems Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions