Changeset 397 in vbox for trunk/include/VBox
- Timestamp:
- Jan 28, 2007 2:34:06 AM (18 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/trpm.h
r346 r397 451 451 452 452 /** 453 * Dispatches an interrupt that arrived while we were in the guest context. 454 * 455 * It's assumes we're invoked with interrupts disabled. 456 * When this function returns, interrupts will be enabled. 457 * 458 * @param pVM The VM handle. 459 */ 460 TRPMR0DECL(void) TRPMR0DispatchHostInterrupt(PVM pVM); 461 462 # ifndef VBOX_WITHOUT_IDT_PATCHING 463 464 /** 453 465 * Changes the VMMR0Entry() call frame and stack used by the IDT patch code 454 466 * so that we'll dispatch an interrupt rather than returning directly to Ring-3 … … 460 472 TRPMR0DECL(void) TRPMR0SetupInterruptDispatcherFrame(PVM pVM, void *pvRet); 461 473 474 # endif /* !VBOX_WITHOUT_IDT_PATCHING */ 475 462 476 /** @} */ 463 477 #endif -
trunk/include/VBox/vmm.h
r321 r397 345 345 { 346 346 /** Run guest context. */ 347 VMMR0_DO_RUN_GC = 0, 347 VMMR0_DO_RAW_RUN = 0, 348 VMMR0_DO_RUN_GC = VMMR0_DO_RAW_RUN, 348 349 /** Run guest code using the available hardware acceleration technology. */ 349 VMMR0_ HWACC_RUN_GUEST,350 VMMR0_DO_HWACC_RUN, 350 351 /** Call VMMR0 Per VM Init. */ 351 352 VMMR0_DO_VMMR0_INIT, … … 353 354 VMMR0_DO_VMMR0_TERM, 354 355 /** Setup the hardware accelerated raw-mode session. */ 355 VMMR0_ HWACC_SETUP_VM,356 VMMR0_DO_HWACC_SETUP_VM, 356 357 /** Calls function in the hypervisor. 357 358 * The caller must setup the hypervisor context so the call will be performed. … … 378 379 VMMR0_DO_SRV_END, 379 380 381 /** Official NOP that we use for profiling. */ 382 VMMR0_DO_NOP, 383 /** Official call we use for testing Ring-0 APIs. */ 384 VMMR0_DO_TESTS, 385 380 386 /** The usual 32-bit type blow up. */ 381 387 VMMR0_DO_32BIT_HACK = 0x7fffffff
Note:
See TracChangeset
for help on using the changeset viewer.