Changeset 2858 in vbox for trunk/src/VBox
- Timestamp:
- May 24, 2007 9:01:00 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VM.cpp
r2776 r2858 271 271 { 272 272 rc = VERR_NO_MEMORY; 273 vmR3CallVMAtError(pfnVMAtError, pvUserVM, rc, RT_SRC_POS, 274 N_("Failed to allocate %d bytes of contiguous memory for the VM structure!\n"), 273 vmR3CallVMAtError(pfnVMAtError, pvUserVM, rc, RT_SRC_POS, 274 N_("Failed to allocate %d bytes of contiguous memory for the VM structure!\n"), 275 275 RT_ALIGN(sizeof(*pVM), PAGE_SIZE)); 276 276 AssertMsgFailed(("Failed to allocate %d bytes of contiguous memory for the VM structure!\n", RT_ALIGN(sizeof(*pVM), PAGE_SIZE))); … … 1264 1264 #endif 1265 1265 #if 1 /* for debugging problems with the async GIP code on linux */ 1266 if ( g_pSUPGlobalInfoPage 1266 if ( g_pSUPGlobalInfoPage 1267 1267 && g_pSUPGlobalInfoPage->u32Mode == SUPGIPMODE_ASYNC_TSC) 1268 1268 { … … 1273 1273 RTLogRelPrintf("%d: u64CpuHz=%RU64Hz u32TransactionId=%#x u64TSC=%RX64 u64NanoTS=%RX64 cErrors=%RU32\n" 1274 1274 " au32TSCHistory={%RX32,%RX32,%RX32,%RX32, %RX32,%RX32,%RX32,%RX32} iTSCHistoryHead=%d\n", 1275 i, 1275 i, 1276 1276 GipCopy.aCPUs[i].u64CpuHz, 1277 1277 GipCopy.aCPUs[i].u32TransactionId, 1278 1278 GipCopy.aCPUs[i].u64TSC, 1279 GipCopy.aCPUs[i].u64NanoTS, 1279 GipCopy.aCPUs[i].u64NanoTS, 1280 1280 GipCopy.aCPUs[i].cErrors, 1281 1281 GipCopy.aCPUs[i].au32TSCHistory[0], … … 1290 1290 RTLogRelPrintf("1ns steps: %RU32\n", RTTime1nsSteps()); 1291 1291 } 1292 #endif 1292 #endif 1293 1293 RTLogRelPrintf("************** End of Guest state at power off ***************\n"); 1294 1294 } … … 1431 1431 STAMR3Dump(pVM, "*"); 1432 1432 #else 1433 LogRel(("************************* Statistics *************************\n")); 1433 1434 STAMR3DumpToReleaseLog(pVM, "*"); 1434 #endif 1435 LogRel(("********************* End of statistics **********************\n")); 1436 #endif 1435 1437 1436 1438 /* … … 2578 2580 RTLogPrintfV(pszFormat, va3); 2579 2581 va_end(va3); 2580 #endif 2582 #endif 2581 2583 2582 2584 /*
Note:
See TracChangeset
for help on using the changeset viewer.