I would like to know why spin locks are used instead of semaphores inside an interrupt handler.

Thanks & Regards,

Mousey

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Semaphores cause tasks to sleep on contention, which is unacceptable for interrupt handlers. Basically, for such a short and fast task (interrupt handling) the work carried out by the semaphore is overkill. Also, spinlocks can't be held by more than one task.

link|improve this answer
@mfukar I know the reason but I didnt understand why double acquire deadlocks can occur because of sleeping and not while using spin locks – mousey Aug 12 '10 at 4:19
Also I would like to know why spin_trylock() is needed ? – mousey Aug 12 '10 at 4:33
@mousey: double-acquire deadlocks cannot occur with spinlocks, because if a spinlock is shared with an interrupt handler all lockers of the spinlock must use the interrupt-disabling variant of the lock function. – caf Aug 12 '10 at 4:55
@caf who shares spin lock with an interrupt handler ? Can you please explain. Similarly mutexes can be done in the same way right. we can disable all the interrupts. – mousey Aug 12 '10 at 5:00
1  
@mousey: Someone shares a spin lock with an interrupt handler if they access the same shared data that the interrupt handler does. Mutexes cannot disable interrupts, since if you disable interrupts and sleep, you will never wake up! – caf Aug 12 '10 at 5:18
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.