VirtualBox

Changeset 53073 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Oct 16, 2014 9:09:09 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
96578
Message:

VMMDev: when logging the Guest Additions OS type, explictely mention if the guest is 32-bit or 64-bit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/VMMDev/VMMDev.cpp

    r52789 r53073  
    340340        pThis->fu32AdditionsOk = VBOX_GUEST_INTERFACE_VERSION_OK(pThis->guestInfo.interfaceVersion);
    341341
    342         LogRel(("Guest Additions information report: Interface = 0x%08X osType = 0x%08X\n",
    343                 pThis->guestInfo.interfaceVersion, pThis->guestInfo.osType));
     342        LogRel(("Guest Additions information report: Interface = 0x%08X osType = 0x%08X (%u-bit)\n",
     343                pThis->guestInfo.interfaceVersion, pThis->guestInfo.osType,
     344                (pThis->guestInfo.osType & VBOXOSTYPE_x64) ? 64 : 32));
    344345
    345346        if (pThis->pDrv && pThis->pDrv->pfnUpdateGuestInfo)
     
    35613562    if (pThis->fu32AdditionsOk)
    35623563    {
    3563         LogRel(("Guest Additions information report: additionsVersion = 0x%08X, osType = 0x%08X\n",
    3564                 pThis->guestInfo.interfaceVersion, pThis->guestInfo.osType));
     3564        LogRel(("Guest Additions information report: additionsVersion = 0x%08X, osType = 0x%08X (%u-bit)\n",
     3565                pThis->guestInfo.interfaceVersion, pThis->guestInfo.osType,
     3566                (pThis->guestInfo.osType & VBOXOSTYPE_x64) ? 64 : 32));
    35653567        if (pThis->pDrv)
    35663568        {
Note: See TracChangeset for help on using the changeset viewer.

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