Changeset 47671 in vbox for trunk/include/VBox/vmm/em.h
- Timestamp:
- Aug 12, 2013 11:16:55 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/em.h
r47619 r47671 234 234 /** @} */ 235 235 236 237 /** @name EM_ONE_INS_FLAGS_XXX - flags for EMR3HmSingleInstruction (et al). 238 * @{ */ 239 /** Return when CS:RIP changes or some other important event happens. 240 * This means running whole REP and LOOP $ sequences for instance. */ 241 #define EM_ONE_INS_FLAGS_RIP_CHANGE RT_BIT_32(0) 242 /** Mask of valid flags. */ 243 #define EM_ONE_INS_FLAGS_MASK UINT32_C(0x00000001) 244 /** @} */ 245 246 236 247 #ifdef IN_RING3 237 248 /** @defgroup grp_em_r3 The EM Host Context Ring-3 API … … 274 285 VMMR3_INT_DECL(int) EMR3NotifyResume(PVM pVM); 275 286 VMMR3_INT_DECL(int) EMR3NotifySuspend(PVM pVM); 276 VMMR3_INT_DECL(VBOXSTRICTRC) EMR3HmSingleInstruction(PVM pVM, PVMCPU pVCpu );287 VMMR3_INT_DECL(VBOXSTRICTRC) EMR3HmSingleInstruction(PVM pVM, PVMCPU pVCpu, uint32_t fFlags); 277 288 278 289 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.