Do not disable interrupts

This commit is contained in:
Alex 2023-03-14 01:41:18 +02:00
parent 46f399c3cd
commit ed1ea5e6b6
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

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);
}