VirtualBox

Changeset 4267 in vbox


Ignore:
Timestamp:
Aug 21, 2007 3:48:23 PM (17 years ago)
Author:
vboxsync
Message:

Updated logging strings

File:
1 edited

Legend:

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

    r4266 r4267  
    233233        && paDeviceModes[Id].dmBitsPerPel == BitsPerPixel)
    234234    {
    235         dprintf(("VBoxService: already at desired resolution.\n"));
     235        dprintf(("VBoxDisplayThread : already at desired resolution.\n"));
    236236        return FALSE;
    237237    }
     
    307307    if (DeviceIoControl (gVBoxDriver, IOCTL_VBOXGUEST_CTL_FILTER_MASK, &maskInfo, sizeof (maskInfo), NULL, 0, &cbReturned, NULL))
    308308    {
    309         dprintf(("VBoxService: DeviceIOControl(CtlMask - or) succeeded\n"));
     309        dprintf(("VBoxDisplayThread : DeviceIOControl(CtlMask - or) succeeded\n"));
    310310    }
    311311    else
    312312    {
    313         dprintf(("VBoxService: DeviceIOControl(CtlMask) failed, DisplayChangeThread exited\n"));
     313        dprintf(("VBoxDisplayThread : DeviceIOControl(CtlMask) failed, DisplayChangeThread exited\n"));
    314314        return -1;
    315315    }
     
    323323        if (DeviceIoControl(gVBoxDriver, IOCTL_VBOXGUEST_WAITEVENT, &waitEvent, sizeof(waitEvent), &waitEvent, sizeof(waitEvent), &cbReturned, NULL))
    324324        {
    325             dprintf(("VBoxService: DeviceIOControl succeded\n"));
     325            dprintf(("VBoxDisplayThread : DeviceIOControl succeded\n"));
    326326
    327327            /* are we supposed to stop? */
     
    329329                break;
    330330
    331             dprintf(("VBoxService: checking event\n"));
     331            dprintf(("VBoxDisplayThread : checking event\n"));
    332332
    333333            /* did we get the right event? */
    334334            if (waitEvent.u32EventFlagsOut & VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST)
    335335            {
    336                 dprintf(("VBoxService: going to get display change information.\n"));
     336                dprintf(("VBoxDisplayThread : going to get display change information.\n"));
    337337
    338338                /* We got at least one event. Read the requested resolution
     
    364364                    if (fDisplayChangeQueried)
    365365                    {
    366                         dprintf(("VBoxService: VMMDevReq_GetDisplayChangeRequest2: %dx%dx%d at %d\n", displayChangeRequest.xres, displayChangeRequest.yres, displayChangeRequest.bpp, displayChangeRequest.display));
     366                        dprintf(("VBoxDisplayThread : VMMDevReq_GetDisplayChangeRequest2: %dx%dx%d at %d\n", displayChangeRequest.xres, displayChangeRequest.yres, displayChangeRequest.bpp, displayChangeRequest.display));
    367367
    368368                        /* Horizontal resolution must be a multiple of 8, round down. */
     
    395395                                if (EnumDisplaySettings(NULL, ENUM_REGISTRY_SETTINGS, &devMode))
    396396                                {
    397                                     dprintf(("VBoxService: Current mode: %dx%dx%d at %d,%d\n", devMode.dmPelsWidth, devMode.dmPelsHeight, devMode.dmBitsPerPel, devMode.dmPosition.x, devMode.dmPosition.y));
     397                                    dprintf(("VBoxDisplayThread : Current mode: %dx%dx%d at %d,%d\n", devMode.dmPelsWidth, devMode.dmPelsHeight, devMode.dmBitsPerPel, devMode.dmPosition.x, devMode.dmPosition.y));
    398398
    399399                                    /* Check whether a mode reset or a change is requested. */
     
    420420                                        && devMode.dmBitsPerPel == displayChangeRequest.bpp)
    421421                                    {
    422                                         dprintf(("VBoxService: already at desired resolution.\n"));
     422                                        dprintf(("VBoxDisplayThread : already at desired resolution.\n"));
    423423                                        break;
    424424                                    }
     
    438438                                        devMode.dmBitsPerPel = displayChangeRequest.bpp;
    439439
    440                                     dprintf(("VBoxService: setting the new mode %dx%dx%d\n", devMode.dmPelsWidth, devMode.dmPelsHeight, devMode.dmBitsPerPel));
     440                                    dprintf(("VBoxDisplayThread : setting the new mode %dx%dx%d\n", devMode.dmPelsWidth, devMode.dmPelsHeight, devMode.dmBitsPerPel));
    441441
    442442                                    /* set the new mode */
     
    444444                                    if (status != DISP_CHANGE_SUCCESSFUL)
    445445                                    {
    446                                         dprintf(("VBoxService: error from ChangeDisplaySettings: %d\n", status));
     446                                        dprintf(("VBoxDisplayThread : error from ChangeDisplaySettings: %d\n", status));
    447447
    448448                                        if (status == DISP_CHANGE_BADMODE)
     
    460460                                else
    461461                                {
    462                                     dprintf(("VBoxService: error from EnumDisplaySettings: %d\n", GetLastError ()));
     462                                    dprintf(("VBoxDisplayThread : error from EnumDisplaySettings: %d\n", GetLastError ()));
    463463                                    break;
    464464                                }
     
    467467                        else
    468468                        {
    469                             dprintf(("VBoxService: vboxDisplayDriver is not active.\n"));
     469                            dprintf(("VBoxDisplayThread : vboxDisplayDriver is not active.\n"));
    470470                        }
    471471
     
    480480                    else
    481481                    {
    482                         dprintf(("VBoxService: error from DeviceIoControl IOCTL_VBOXGUEST_VMMREQUEST\n"));
     482                        dprintf(("VBoxDisplayThread : error from DeviceIoControl IOCTL_VBOXGUEST_VMMREQUEST\n"));
    483483                        /* sleep a bit to not eat too much CPU while retrying */
    484484                        /* are we supposed to stop? */
     
    493493        } else
    494494        {
    495             dprintf(("VBoxService: error 0 from DeviceIoControl IOCTL_VBOXGUEST_WAITEVENT\n"));
     495            dprintf(("VBoxDisplayThread : error 0 from DeviceIoControl IOCTL_VBOXGUEST_WAITEVENT\n"));
    496496            /* sleep a bit to not eat too much CPU in case the above call always fails */
    497497            if (WaitForSingleObject(pCtx->pEnv->hStopEvent, 10) == WAIT_OBJECT_0)
     
    507507    if (DeviceIoControl (gVBoxDriver, IOCTL_VBOXGUEST_CTL_FILTER_MASK, &maskInfo, sizeof (maskInfo), NULL, 0, &cbReturned, NULL))
    508508    {
    509         dprintf(("VBoxService: DeviceIOControl(CtlMask - not) succeeded\n"));
     509        dprintf(("VBoxDisplayThread : DeviceIOControl(CtlMask - not) succeeded\n"));
    510510    }
    511511    else
    512512    {
    513         dprintf(("VBoxService: DeviceIOControl(CtlMask) failed\n"));
    514     }
    515 
    516     dprintf(("VBoxService: finished display change request thread\n"));
     513        dprintf(("VBoxDisplayThread : DeviceIOControl(CtlMask) failed\n"));
     514    }
     515
     516    dprintf(("VBoxDisplayThread : finished display change request thread\n"));
    517517    return 0;
    518518}
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