Changeset 80027 in vbox
- Timestamp:
- Jul 28, 2019 2:26:07 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vmapi.h
r76585 r80027 335 335 #ifdef IN_RING3 336 336 /** @defgroup grp_vmm_apis_r3 VM Host Context Ring 3 API 337 * This interface is a _draft_!338 337 * @ingroup grp_vm 339 338 * @{ */ … … 351 350 * Used to make decisision depending on HM* bits being completely 352 351 * initialized. */ 353 VMINITCOMPLETED_HM, 354 /** The RC init is completed. */ 355 VMINITCOMPLETED_RC 352 VMINITCOMPLETED_HM 356 353 } VMINITCOMPLETED; 357 354 … … 520 517 #endif /* IN_RING3 */ 521 518 522 523 #ifdef IN_RC524 /** @defgroup grp_vmm_apis_gc VM Guest Context APIs525 * @ingroup grp_vm526 * @{ */527 528 /** @} */529 #endif530 531 519 RT_C_DECLS_END 532 520 -
trunk/src/VBox/VMM/VMMR3/PDM.cpp
r78208 r80027 481 481 VMMR3_INT_DECL(int) PDMR3InitCompleted(PVM pVM, VMINITCOMPLETED enmWhat) 482 482 { 483 #ifdef VBOX_WITH_RAW_MODE484 if (enmWhat == VMINITCOMPLETED_RC)485 #else486 483 if (enmWhat == VMINITCOMPLETED_RING0) 487 #endif488 484 return pdmR3DevInitComplete(pVM); 489 485 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.