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 |
what is mean by raid and what are all raids available even in software and hardware?
What are system calls used for process management in linux?
what is cups and how to configure?
what are the different ways the Linux can swich from User Space to Kernel Space & vice-versa ?
what happens when we do insmod & rmmod in Linux Device Drivers ?
how to configure ftp server on redhat linux?
what is the diff b/w MUTEX and semaphore?
what is sudo on linux?
What is atomic function / atomic variable ?
if one of the critical section code (linked list) is under ISR & another one in kernel thread ? How you will synchronize for this critical section code ?
What do fork() internally call?
what are Softirq's and how many major numbers be allocated in the linux kernel(2.4) ?