VOID __stdcall KiDpcWatchdog(_KDPC *WatchdogDpc, VOID *DeferredContext, VOID *SystemArgument1, VOID *SystemArgument2){
struct _KPRCB *CurrentPrcb;
CurrentPrcb = KeGetCurrentPrcb();
_disable();
CurrentPrcb->DpcWatchdogCount = 0;
KiResetGlobalDpcWatchdogProfiler((INT64)CurrentPrcb);
_enable();
}