Tag : interrupt

In a multi-threaded program, locks and interrupts can seem like an irresistable force meeting an immovable object. After all, if a thread is blocked, can it handle an event? Well, it depends on how you set it up, but at least in C, you can force the issue, and one of them does in fact win. The ..

Read more