Changeset 4609 in vbox
- Timestamp:
- Sep 7, 2007 12:24:15 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 24251
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxService.cpp
r4594 r4609 27 27 #include <malloc.h> 28 28 #include <VBoxGuestInternal.h> 29 #include <iprt/string.h> 29 30 30 31 #include "helpers.h" … … 64 65 65 66 vmmdevInitRequest(&pReq->header, VMMDevReq_LogString); 66 vsprintf(pReq->szString, String, va);67 RTStrPrintfV(pReq->szString, sizeof(Buffer)-sizeof(*pReq), String, va); 67 68 OutputDebugStringA(pReq->szString); 68 69 pReq->header.size += strlen(pReq->szString); -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxStatistics.cpp
r4604 r4609 143 143 GetSystemInfo(&systemInfo); 144 144 145 memStatus.dwLength = sizeof(memStatus); 145 146 gCtx.pfnGlobalMemoryStatusEx(&memStatus); 146 147 147 148 req.guestStats.u32PageSize = systemInfo.dwPageSize; 148 149 req.guestStats.u32PhysMemTotal = (uint32_t)(memStatus.ullTotalPhys / systemInfo.dwPageSize); 149 dprintf(("memStatus.ullTotalPhys %VX64\n", memStatus.ullTotalPhys));150 150 req.guestStats.u32PhysMemAvail = (uint32_t)(memStatus.ullAvailPhys / systemInfo.dwPageSize); 151 151 /* The current size of the committed memory limit, in bytes. This is physical memory plus the size of the page file, minus a small overhead. */ … … 161 161 if (gCtx.pfnGetPerformanceInfo(&perfInfo, sizeof(perfInfo))) 162 162 { 163 dprintf(("PhysicalTotal %VX64\n", perfInfo.PhysicalTotal));164 dprintf(("PhysicalAvailable %VX64\n", perfInfo.PhysicalAvailable));165 163 req.guestStats.u32Processes = perfInfo.ProcessCount; 166 164 req.guestStats.u32Threads = perfInfo.ThreadCount; … … 205 203 uint64_t deltaKernel = (pProcInfo->KernelTime.QuadPart - gCtx.ullLastCpuLoad_Kernel); 206 204 uint64_t deltaUser = (pProcInfo->UserTime.QuadPart - gCtx.ullLastCpuLoad_User); 205 deltaKernel -= deltaIdle; /* idle time is added to kernel time */ 207 206 uint64_t ullTotalTime = deltaIdle + deltaKernel + deltaUser; 208 207
Note:
See TracChangeset
for help on using the changeset viewer.