Do not disable interrupts

This commit is contained in:
Alex
2023-03-14 01:41:18 +02:00
parent 46f399c3cd
commit ed1ea5e6b6

View File

@ -218,7 +218,7 @@ namespace Driver
SafeFunction void DriverInterruptHook::OnInterruptReceived(void *Frame)
#endif
{
SmartCriticalSection(DriverInterruptLock);
SmartLock(DriverInterruptLock);
((int (*)(void *))(Handle))(Data);
UNUSED(Frame);
}