Changeset 4597 in vbox
- Timestamp:
- Sep 7, 2007 9:02:37 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 24233
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxMemBalloon.cpp
r4595 r4597 43 43 DWORD cbReturned; 44 44 45 dprintf(("VBox GuestInit\n"));45 dprintf(("VBoxMemBalloonInit\n")); 46 46 47 47 gCtx.pEnv = pEnv; … … 52 52 if (DeviceIoControl(gVBoxDriver, IOCTL_VBOXGUEST_CTL_CHECK_BALLOON, NULL, 0, &dwMemBalloonSize, sizeof(dwMemBalloonSize), &cbReturned, NULL)) 53 53 { 54 dprintf(("VBoxMemBalloon Thread: new balloon size % MB\n", dwMemBalloonSize));54 dprintf(("VBoxMemBalloonInit: new balloon size % MB\n", dwMemBalloonSize)); 55 55 gCtx.uMemBalloonSize = dwMemBalloonSize; 56 56 } 57 57 else 58 dprintf(("VBoxMemBalloon Thread: DeviceIoControl (balloon) failed with %d\n", GetLastError()));58 dprintf(("VBoxMemBalloonInit: DeviceIoControl (balloon) failed with %d\n", GetLastError())); 59 59 60 60 *pfStartThread = true; … … 66 66 void VBoxMemBalloonDestroy(const VBOXSERVICEENV *pEnv, void *pInstance) 67 67 { 68 dprintf(("VBox GuestDestroy\n"));68 dprintf(("VBoxMemBalloonDestroy\n")); 69 69 return; 70 70 } … … 153 153 } 154 154 155 dprintf(("VBoxMemBalloonThread: finished seamlesschange request thread\n"));155 dprintf(("VBoxMemBalloonThread: finished mem balloon change request thread\n")); 156 156 return 0; 157 157 } -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxStatistics.cpp
r4594 r4597 67 67 if (DeviceIoControl(gVBoxDriver, IOCTL_VBOXGUEST_VMMREQUEST, &req, req.header.size, &req, req.header.size, &cbReturned, NULL)) 68 68 { 69 dprintf(("VBoxStats Thread: new statistics interval %d seconds\n", req.u32StatInterval));69 dprintf(("VBoxStatsInit: new statistics interval %d seconds\n", req.u32StatInterval)); 70 70 gCtx.uStatInterval = req.u32StatInterval * 1000; 71 71 } 72 72 else 73 dprintf(("VBoxStats Thread: DeviceIoControl failed with %d\n", GetLastError()));73 dprintf(("VBoxStatsInit: DeviceIoControl failed with %d\n", GetLastError())); 74 74 75 75 /* NtQuerySystemInformation might be dropped in future releases, so load it dynamically as per Microsoft's recommendation */ … … 219 219 if (DeviceIoControl(gVBoxDriver, IOCTL_VBOXGUEST_VMMREQUEST, &req, req.header.size, &req, req.header.size, &cbReturned, NULL)) 220 220 { 221 dprintf(("VBoxStats Thread: new statistics reported successfully!\n"));222 } 223 else 224 dprintf(("VBoxStats Thread: DeviceIoControl (stats report) failed with %d\n", GetLastError()));221 dprintf(("VBoxStatsReportStatistics: new statistics reported successfully!\n")); 222 } 223 else 224 dprintf(("VBoxStatsReportStatistics: DeviceIoControl (stats report) failed with %d\n", GetLastError())); 225 225 } 226 226 … … 315 315 } 316 316 317 dprintf(("VBoxStatsThread: finished s eamless change request thread\n"));317 dprintf(("VBoxStatsThread: finished statistics change request thread\n")); 318 318 return 0; 319 319 }
Note:
See TracChangeset
for help on using the changeset viewer.