Question d’entretien chez NVIDIA

How to handle interrupt racing condition?

Réponses aux questions d'entretien

Utilisateur anonyme

25 juin 2018

Interrupt racing conditions are handled using spin locks

Utilisateur anonyme

19 févr. 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.