Changeset 29409 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 12, 2010 11:14:51 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GMMR0.cpp
r29308 r29409 3498 3498 Assert(ret); 3499 3499 3500 Log(("GMMR0RegisterSharedModule: new local module %s\n", pszModuleName)); 3500 3501 fNewModule = true; 3501 3502 } … … 3541 3542 pGlobalModule->cUsers++; 3542 3543 rc = VINF_SUCCESS; 3544 3545 Log(("GMMR0RegisterSharedModule: new global module %s\n", pszModuleName)); 3543 3546 } 3544 3547 else … … 3555 3558 if ( fNewModule 3556 3559 || pRecVM->fCollision == true) /* colliding module unregistered and new one registerd since the last check */ 3560 { 3557 3561 pGlobalModule->cUsers++; 3558 3562 Log(("GMMR0RegisterSharedModule: using existing module %s cUser=%d!\n", pszModuleName, pGlobalModule->cUsers)); 3563 } 3559 3564 pRecVM->fCollision = false; 3560 3565 rc = VINF_SUCCESS; … … 3562 3567 else 3563 3568 { 3569 Log(("GMMR0RegisterSharedModule: module %s collision!\n", pszModuleName)); 3564 3570 pRecVM->fCollision = true; 3565 3571 rc = VINF_PGM_SHARED_MODULE_COLLISION; … … 3625 3631 if (RT_FAILURE(rc)) 3626 3632 return rc; 3633 3634 Log(("GMMR0UnregisterSharedModule %s %s base=%RGv size %x\n", pszModuleName, pszVersion, GCBaseAddr, cbModule)); 3627 3635 3628 3636 /*
Note:
See TracChangeset
for help on using the changeset viewer.