Changeset 1480 in vbox for trunk/src/VBox/HostDrivers/Support/testcase
- Timestamp:
- Mar 14, 2007 6:27:47 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19541
- Location:
- trunk/src/VBox/HostDrivers/Support/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp
r914 r1480 87 87 * Create a fake 'VM'. 88 88 */ 89 PVMR0 pVMR0; 90 RTHCPHYS HCPhysVM; 91 PVM pVM = (PVM)SUPContAlloc2(sizeof(*pVM), &pVMR0, &HCPhysVM); 92 if (pVM) 89 PVMR0 pVMR0 = NIL_RTR0PTR; 90 PVM pVM = NULL; 91 const unsigned cPages = RT_ALIGN_Z(sizeof(*pVM), PAGE_SIZE) >> PAGE_SHIFT; 92 PSUPPAGE paPages = (PSUPPAGE)RTMemAllocZ(cPages * sizeof(SUPPAGE)); 93 if (paPages) 94 rc = SUPLowAlloc(cPages, (void **)&pVM, &pVMR0, &paPages[0]); 95 else 96 rc = VERR_NO_MEMORY; 97 if (VBOX_SUCCESS(rc)) 93 98 { 94 99 pVM->pVMGC = 0; 95 100 pVM->pVMR3 = pVM; 96 101 pVM->pVMR0 = pVMR0; 102 #ifdef VBOX_USE_LOW_MEM_FOR_VM 103 pVM->paVMPagesR3 = paPages; 104 #else 97 105 pVM->HCPhysVM = HCPhysVM; 106 #endif 98 107 pVM->pSession = pSession; 99 108 -
trunk/src/VBox/HostDrivers/Support/testcase/tstLow.cpp
r1 r1480 50 50 void *pvPages0 = (void *)0x77777777; 51 51 memset(&aPages0[0], 0x8f, sizeof(aPages0)); 52 rc = SUPLowAlloc(ELEMENTS(aPages0), &pvPages0, aPages0);52 rc = SUPLowAlloc(ELEMENTS(aPages0), &pvPages0, NULL, aPages0); 53 53 if (VBOX_SUCCESS(rc)) 54 54 { … … 98 98 void *pvPages1 = (void *)0x77777777; 99 99 memset(&aPages1[0], 0x8f, sizeof(aPages1)); 100 rc = SUPLowAlloc(cPages, &pvPages1, aPages1);100 rc = SUPLowAlloc(cPages, &pvPages1, NULL, aPages1); 101 101 if (VBOX_SUCCESS(rc)) 102 102 {
Note:
See TracChangeset
for help on using the changeset viewer.