diff --git a/Core/Driver/Driver.cpp b/Core/Driver/Driver.cpp index 7967097..8d1efb7 100644 --- a/Core/Driver/Driver.cpp +++ b/Core/Driver/Driver.cpp @@ -188,11 +188,11 @@ namespace Driver } #if defined(__amd64__) - void DriverInterruptHook::OnInterruptReceived(CPU::x64::TrapFrame *Frame) + SafeFunction void DriverInterruptHook::OnInterruptReceived(CPU::x64::TrapFrame *Frame) #elif defined(__i386__) - void DriverInterruptHook::OnInterruptReceived(void *Frame) + SafeFunction void DriverInterruptHook::OnInterruptReceived(void *Frame) #elif defined(__aarch64__) - void DriverInterruptHook::OnInterruptReceived(void *Frame) + SafeFunction void DriverInterruptHook::OnInterruptReceived(void *Frame) #endif { SmartCriticalSection(DriverInterruptLock);