Changeset 105673 in vbox for trunk/include
- Timestamp:
- Aug 14, 2024 1:57:57 PM (4 months ago)
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r105266 r105673 2520 2520 * handling. */ 2521 2521 #define VINF_IEM_REEXEC_FINISH_WITH_FLAGS (5312) 2522 /** Recompiled execution: Jump back in the same TB. */ 2523 #define VINF_IEM_REEXEC_JUMP (5313) 2522 2524 2523 2525 /** Recompilation: End translation block. */ -
trunk/include/VBox/vmm/tm.h
r101088 r105673 272 272 273 273 VMMDECL(bool) TMTimerPollBool(PVMCC pVM, PVMCPUCC pVCpu); 274 VMMDECL(bool) TMTimerPollBoolWith32BitMilliTS(PVMCC pVM, PVMCPUCC pVCpu, uint32_t *pmsNow); 274 VMM_INT_DECL(bool) TMTimerPollBoolWith32BitMilliTS(PVMCC pVM, PVMCPUCC pVCpu, uint32_t *pmsNow); 275 VMM_INT_DECL(bool) TMTimerPollBoolWithNanoTS(PVMCC pVM, PVMCPUCC pVCpu, uint64_t *pnsNow); 275 276 VMM_INT_DECL(void) TMTimerPollVoid(PVMCC pVM, PVMCPUCC pVCpu); 276 277 VMM_INT_DECL(uint64_t) TMTimerPollGIP(PVMCC pVM, PVMCPUCC pVCpu, uint64_t *pu64Delta); -
trunk/include/VBox/vmm/vm.h
r105227 r105673 417 417 * 418 418 * Available VM bits: 419 * 0, 1,5, 6, 7, 13, 14, 15, 16, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30419 * 5, 6, 7, 13, 14, 15, 16, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 420 420 * 421 421 * … … 427 427 * @{ 428 428 */ 429 /* Bit 0, bit 1: Reserved and must not be reused. The recompiler ASSUMES it 430 can OR the local and global FFs together and keept the two 431 VMCPU_FF_INTERRUPT_XXX flags uncorrupted. */ 429 432 /** The virtual sync clock has been stopped, go to TM until it has been 430 433 * restarted... */
Note:
See TracChangeset
for help on using the changeset viewer.