KeResumeClockTimerSafe

VOID __stdcall KeResumeClockTimerSafe(){
  unsigned __int8 CurrentIrql; 

  if( ObGetCurrentIrql() >= 0xDu )
  {
    KiResumeClockTimer();
  }
  else
  {
    CurrentIrql = KeGetCurrentIrql();
    __writecr8(0xDui64);
    KiResumeClockTimer();
    __writecr8(CurrentIrql);
  }
}

Referenced by:

IopLiveDumpProcessCorralStateChange
PnprQuiesceProcessorDpc
PnprWakeProcessors