NVIDIA Interview Question

How to handle interrupt racing condition?

Interview Answers

Anonymous

Feb 19, 2016

Racing conditions are when two processes access the same information and the result is dependent on the order it was accessed. Solutions to race conditions are Peterson's algorithm, monitors, semaphores, and interrupts.

Anonymous

Jun 25, 2018

Interrupt racing conditions are handled using spin locks