VirtualBox

Changeset 29409 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
May 12, 2010 11:14:51 AM (15 years ago)
Author:
vboxsync
Message:

More logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/GMMR0.cpp

    r29308 r29409  
    34983498            Assert(ret);
    34993499
     3500            Log(("GMMR0RegisterSharedModule: new local module %s\n", pszModuleName));
    35003501            fNewModule = true;
    35013502        }
     
    35413542            pGlobalModule->cUsers++;
    35423543            rc = VINF_SUCCESS;
     3544
     3545            Log(("GMMR0RegisterSharedModule: new global module %s\n", pszModuleName));
    35433546        }
    35443547        else
     
    35553558                if (    fNewModule
    35563559                    ||  pRecVM->fCollision == true) /* colliding module unregistered and new one registerd since the last check */
     3560                {
    35573561                    pGlobalModule->cUsers++;
    3558 
     3562                    Log(("GMMR0RegisterSharedModule: using existing module %s cUser=%d!\n", pszModuleName, pGlobalModule->cUsers));
     3563                }
    35593564                pRecVM->fCollision    = false;
    35603565                rc = VINF_SUCCESS;
     
    35623567            else
    35633568            {
     3569                Log(("GMMR0RegisterSharedModule: module %s collision!\n", pszModuleName));
    35643570                pRecVM->fCollision = true;
    35653571                rc = VINF_PGM_SHARED_MODULE_COLLISION;
     
    36253631    if (RT_FAILURE(rc))
    36263632        return rc;
     3633
     3634    Log(("GMMR0UnregisterSharedModule %s %s base=%RGv size %x\n", pszModuleName, pszVersion, GCBaseAddr, cbModule));
    36273635
    36283636    /*
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