Linux System Calls Question:

What is difference between spinlock, seamaphores and mutex and where to use it?

Tweet Share WhatsApp

Answer:

mainly spinlock used in threads to avoid synchronization,where as semaphore and mutex used to avoid process synchronization.
1.spinlock is something like polling.it spins for resouce until aloocated resouce releases.
2.binary semaphore and mutex are similar.

Download Linux System Calls PDF Read All 35 Linux System Calls Questions
Previous QuestionNext Question
How to find out the dependency required for a package?What does exec family return?