Changeset 16184 in vbox
- Timestamp:
- Jan 22, 2009 5:33:01 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41934
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VM.cpp
r15349 r16184 560 560 { 561 561 /* 562 * Init the Ring-3 components and do a round of relocations with 0 delta. 562 * Init the ring-3 components and ring-3 per cpu data, finishing it off 563 * by a relocation round (intermediate context finalization will do this). 563 564 */ 564 565 rc = vmR3InitRing3(pVM, pUVM); 565 566 if (RT_SUCCESS(rc)) 566 567 { 567 VMR3Relocate(pVM, 0);568 LogFlow(("Ring-3 init succeeded\n"));569 570 /* Initialize the VMCPU components. */571 568 rc = vmR3InitVMCpu(pVM); 572 569 if (RT_SUCCESS(rc)) 570 rc = PGMR3FinalizeMappings(pVM); 571 if (RT_SUCCESS(rc)) 573 572 { 573 574 LogFlow(("Ring-3 init succeeded\n")); 575 574 576 /* 575 577 * Init the Ring-0 components.
Note:
See TracChangeset
for help on using the changeset viewer.