Changeset 43394 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Sep 21, 2012 11:11:17 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80872
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r42420 r43394 202 202 DBGFEVENTCTX_REM, 203 203 /** VMX / AVT mode. */ 204 DBGFEVENTCTX_H WACCL,204 DBGFEVENTCTX_HM, 205 205 /** Hypervisor context. */ 206 206 DBGFEVENTCTX_HYPER, -
trunk/include/VBox/vmm/em.h
r42186 r43394 52 52 EMSTATE_RAW, 53 53 /** Hardware accelerated raw-mode execution. */ 54 EMSTATE_H WACC,54 EMSTATE_HM, 55 55 /** Value reserved for future use (used to be PARAV). */ 56 56 EMSTATE_RESERVED, … … 68 68 EMSTATE_DEBUG_GUEST_RAW, 69 69 /** Guest debug event from hardware accelerated mode is being processed. */ 70 EMSTATE_DEBUG_GUEST_H WACC,70 EMSTATE_DEBUG_GUEST_HM, 71 71 /** Guest debug event from recompiled-mode is being processed. */ 72 72 EMSTATE_DEBUG_GUEST_REM, -
trunk/include/VBox/vmm/iom.h
r42451 r43394 76 76 && (rc) >= VINF_EM_FIRST \ 77 77 && (rc) != VINF_EM_RESCHEDULE_RAW \ 78 && (rc) != VINF_EM_RESCHEDULE_H WACC\78 && (rc) != VINF_EM_RESCHEDULE_HM \ 79 79 ) \ 80 80 ) -
trunk/include/VBox/vmm/vmm.h
r43392 r43394 321 321 VMMR0_DO_RAW_RUN = SUP_VMMR0_DO_RAW_RUN, 322 322 /** Run guest code using the available hardware acceleration technology. */ 323 VMMR0_DO_H WACC_RUN = SUP_VMMR0_DO_HWACC_RUN,323 VMMR0_DO_HM_RUN = SUP_VMMR0_DO_HM_RUN, 324 324 /** Official NOP that we use for profiling. */ 325 325 VMMR0_DO_NOP = SUP_VMMR0_DO_NOP, … … 353 353 VMMR0_DO_VMMR0_TERM, 354 354 /** Setup the hardware accelerated raw-mode session. */ 355 VMMR0_DO_H WACC_SETUP_VM,355 VMMR0_DO_HM_SETUP_VM, 356 356 /** Attempt to enable or disable hardware accelerated raw-mode. */ 357 VMMR0_DO_H WACC_ENABLE,357 VMMR0_DO_HM_ENABLE, 358 358 /** Calls function in the hypervisor. 359 359 * The caller must setup the hypervisor context so the call will be performed.
Note:
See TracChangeset
for help on using the changeset viewer.