VirtualBox

Changeset 4597 in vbox


Ignore:
Timestamp:
Sep 7, 2007 9:02:37 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
24233
Message:

Logging updates

Location:
trunk/src/VBox/Additions/WINNT/VBoxService
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/VBoxService/VBoxMemBalloon.cpp

    r4595 r4597  
    4343    DWORD  cbReturned;
    4444
    45     dprintf(("VBoxGuestInit\n"));
     45    dprintf(("VBoxMemBalloonInit\n"));
    4646
    4747    gCtx.pEnv                   = pEnv;
     
    5252    if (DeviceIoControl(gVBoxDriver, IOCTL_VBOXGUEST_CTL_CHECK_BALLOON, NULL, 0, &dwMemBalloonSize, sizeof(dwMemBalloonSize), &cbReturned, NULL))
    5353    {
    54         dprintf(("VBoxMemBalloonThread: new balloon size % MB\n", dwMemBalloonSize));
     54        dprintf(("VBoxMemBalloonInit: new balloon size % MB\n", dwMemBalloonSize));
    5555        gCtx.uMemBalloonSize = dwMemBalloonSize;
    5656    }
    5757    else
    58         dprintf(("VBoxMemBalloonThread: DeviceIoControl (balloon) failed with %d\n", GetLastError()));
     58        dprintf(("VBoxMemBalloonInit: DeviceIoControl (balloon) failed with %d\n", GetLastError()));
    5959
    6060    *pfStartThread = true;
     
    6666void VBoxMemBalloonDestroy(const VBOXSERVICEENV *pEnv, void *pInstance)
    6767{
    68     dprintf(("VBoxGuestDestroy\n"));
     68    dprintf(("VBoxMemBalloonDestroy\n"));
    6969    return;
    7070}
     
    153153    }
    154154
    155     dprintf(("VBoxMemBalloonThread: finished seamless change request thread\n"));
     155    dprintf(("VBoxMemBalloonThread: finished mem balloon change request thread\n"));
    156156    return 0;
    157157}
  • trunk/src/VBox/Additions/WINNT/VBoxService/VBoxStatistics.cpp

    r4594 r4597  
    6767    if (DeviceIoControl(gVBoxDriver, IOCTL_VBOXGUEST_VMMREQUEST, &req, req.header.size, &req, req.header.size, &cbReturned, NULL))
    6868    {
    69         dprintf(("VBoxStatsThread: new statistics interval %d seconds\n", req.u32StatInterval));
     69        dprintf(("VBoxStatsInit: new statistics interval %d seconds\n", req.u32StatInterval));
    7070        gCtx.uStatInterval = req.u32StatInterval * 1000;
    7171    }
    7272    else
    73         dprintf(("VBoxStatsThread: DeviceIoControl failed with %d\n", GetLastError()));
     73        dprintf(("VBoxStatsInit: DeviceIoControl failed with %d\n", GetLastError()));
    7474
    7575    /* NtQuerySystemInformation might be dropped in future releases, so load it dynamically as per Microsoft's recommendation */
     
    219219        if (DeviceIoControl(gVBoxDriver, IOCTL_VBOXGUEST_VMMREQUEST, &req, req.header.size, &req, req.header.size, &cbReturned, NULL))
    220220        {
    221             dprintf(("VBoxStatsThread: new statistics reported successfully!\n"));
    222         }
    223         else
    224             dprintf(("VBoxStatsThread: 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()));
    225225    }
    226226
     
    315315    }
    316316
    317     dprintf(("VBoxStatsThread: finished seamless change request thread\n"));
     317    dprintf(("VBoxStatsThread: finished statistics change request thread\n"));
    318318    return 0;
    319319}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette