_KTIMER_TABLE *__stdcall KiSelectActiveTimerTable(_KPRCB *Prcb, UINT8 CheckForOwner){
_KTIMER_TABLE *result;
result = 0i64;
if( !KiSerializeTimerExpiration )
return &Prcb->TimerTable;
if( !CheckForOwner || Prcb->ClockOwner )
return &KiProcessorBlock->TimerTable;
return result;
}