NVIDIA interview question

How to handle interrupt racing condition?

Interview Answers

Anonymous

19 Feb 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

25 Jun 2018

Interrupt racing conditions are handled using spin locks