diff b/w spinlock, seamaphores and mutex and where to use it.
Answers were Sorted based on User's Feedback
Answer / kapil thakar
Spin lock used in kernel context. It will not allow the
process or thread to sleep.
While mutux and semaphore can go into sleep.
So this make the spin lock can be used in interrupt context
or interrupt.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raghava
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.
| Is This Answer Correct ? | 1 Yes | 2 No |
how to configure http server on red hat linux4.0?
what are Softirq's and how many major numbers be allocated in the linux kernel(2.4) ?
what is samba, what is configuration file, how it will work?
what is the difference between user APIs and kernel system calls ?
what is the diff b/w MUTEX and semaphore?
What will happen when we invoke a system call and say with an example of invoking a system call ?read? for a device?
what are the backup utilites on red hat linux 4.0?
Explain process management system calls in linux?
What are the signals we have in Linux
why the kernel panic error was appering?
what are different ways the context switch happens from user to kernel space or vice-versa ?
What is the use of proc structure?