Tagged Questions
2
votes
2answers
827 views
Interrupt Handling on SMP Systems
Are Interrupts assigned to a fixed CPU (always handled by the same CPU)?
To put my question in context:
From:
http://msdn.microsoft.com/en-us/library/ms795060.aspx
The spin lock that protects the ...
1
vote
1answer
151 views
Blocking or sleeping an interrupt handler
Assume:
1) Multi-cpu environment
2) Process that gets interrupted, is the same process that executes the interrupt handler, so I guess technically nothing gets interrupted except what the process was ...