Changeset 83772 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Apr 17, 2020 4:28:54 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137295
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/NEMAllNativeTemplate-win.cpp.h
r82968 r83772 446 446 Assert(aValues[iReg - 1].DeliverabilityNotifications.NmiNotification == RT_BOOL(fDesiredIntWin & NEM_WIN_INTW_F_NMI)); 447 447 Assert(aValues[iReg - 1].DeliverabilityNotifications.InterruptNotification == RT_BOOL(fDesiredIntWin & NEM_WIN_INTW_F_REGULAR)); 448 Assert(aValues[iReg - 1].DeliverabilityNotifications.InterruptPriority == ( fDesiredIntWin & NEM_WIN_INTW_F_PRIO_MASK) >> NEM_WIN_INTW_F_PRIO_SHIFT);448 Assert(aValues[iReg - 1].DeliverabilityNotifications.InterruptPriority == (unsigned)((fDesiredIntWin & NEM_WIN_INTW_F_PRIO_MASK) >> NEM_WIN_INTW_F_PRIO_SHIFT)); 449 449 } 450 450 … … 1256 1256 const uint64_t offDelta = (ASMReadTSC() - uFirstTsc); 1257 1257 Value.Reg64 = uPausedTscValue + offDelta; 1258 HRESULThrc = WHvSetVirtualProcessorRegisters(pVM->nem.s.hPartition, iCpu, &enmName, 1, &Value);1258 hrc = WHvSetVirtualProcessorRegisters(pVM->nem.s.hPartition, iCpu, &enmName, 1, &Value); 1259 1259 AssertLogRelMsgReturn(SUCCEEDED(hrc), 1260 1260 ("WHvSetVirtualProcessorRegisters(%p, 0,{tsc},2,%#RX64 + %#RX64) -> %Rhrc (Last=%#x/%u)\n",
Note:
See TracChangeset
for help on using the changeset viewer.