Changeset 25609 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Dec 31, 2009 1:41:35 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56300
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/lockvalidator.cpp
r25607 r25609 212 212 case RTLOCKVALRECSHRDOWN_MAGIC: 213 213 { 214 PRTLOCKVALRECSHRD pShared = pRec->Sh aredOwn.pSharedRec;214 PRTLOCKVALRECSHRD pShared = pRec->ShrdOwner.pSharedRec; 215 215 if ( VALID_PTR(pShared) 216 216 && pShared->Core.u32Magic == RTLOCKVALRECSHRD_MAGIC) 217 217 RTAssertMsg2AddWeak("%s%p %s srec=%p trec=%p thr=%s nest=%u pos={%Rbn(%u) %Rfn %p}%s", pszPrefix, 218 218 pShared->hLock, pShared->pszName, pShared, 219 pRec, rtLockValidatorNameThreadHandle(&pRec->Sh aredOwn.hThread), pRec->SharedOwn.cRecursion,220 pRec->Sh aredOwn.SrcPos.pszFile, pRec->SharedOwn.SrcPos.uLine, pRec->SharedOwn.SrcPos.pszFunction, pRec->SharedOwn.SrcPos.uId,219 pRec, rtLockValidatorNameThreadHandle(&pRec->ShrdOwner.hThread), pRec->ShrdOwner.cRecursion, 220 pRec->ShrdOwner.SrcPos.pszFile, pRec->ShrdOwner.SrcPos.uLine, pRec->ShrdOwner.SrcPos.pszFunction, pRec->ShrdOwner.SrcPos.uId, 221 221 pszSuffix); 222 222 else 223 223 RTAssertMsg2AddWeak("%sbad srec=%p trec=%p thr=%s nest=%u pos={%Rbn(%u) %Rfn %p}%s", pszPrefix, 224 224 pShared, 225 pRec, rtLockValidatorNameThreadHandle(&pRec->Sh aredOwn.hThread), pRec->SharedOwn.cRecursion,226 pRec->Sh aredOwn.SrcPos.pszFile, pRec->SharedOwn.SrcPos.uLine, pRec->SharedOwn.SrcPos.pszFunction, pRec->SharedOwn.SrcPos.uId,225 pRec, rtLockValidatorNameThreadHandle(&pRec->ShrdOwner.hThread), pRec->ShrdOwner.cRecursion, 226 pRec->ShrdOwner.SrcPos.pszFile, pRec->ShrdOwner.SrcPos.uLine, pRec->ShrdOwner.SrcPos.pszFunction, pRec->ShrdOwner.SrcPos.uId, 227 227 pszSuffix); 228 228 break; … … 549 549 { 550 550 rtLockValidatorSerializeDetectionEnter(); 551 if (pShared->papOwners) 552 { 553 PRTLOCKVALRECSHRDOWN volatile *papOwners = pShared->papOwners; 554 uint32_t const cMax = pShared->cAllocated; 551 552 PRTLOCKVALRECSHRDOWN volatile *papOwners = pShared->papOwners; 553 if (papOwners) 554 { 555 uint32_t const cMax = pShared->cAllocated; 555 556 for (uint32_t iEntry = 0; iEntry < cMax; iEntry++) 556 557 { … … 565 566 } 566 567 } 568 567 569 rtLockValidatorSerializeDetectionLeave(); 568 570 return NULL; … … 659 661 */ 660 662 #if 0 /** @todo enable this after making sure growing works flawlessly. */ 661 uint32_t 663 uint32_t cInc = RT_ALIGN_32(pShared->cEntries - cAllocated, 16); 662 664 #else 663 uint32_t 665 uint32_t cInc = RT_ALIGN_32(pShared->cEntries - cAllocated, 1); 664 666 #endif 665 PRTLOCKVALRECSHRDOWN *papOwners;667 PRTLOCKVALRECSHRDOWN *papOwners; 666 668 papOwners = (PRTLOCKVALRECSHRDOWN *)RTMemRealloc((void *)pShared->papOwners, 667 669 (cAllocated + cInc) * sizeof(void *)); 668 670 if (!papOwners) 669 671 { … … 717 719 return false; /* the worker leave the lock */ 718 720 719 PRTLOCKVALRECSHRDOWN volatile *papOwners = pShared->papOwners;720 uint32_t const 721 PRTLOCKVALRECSHRDOWN volatile *papOwners = pShared->papOwners; 722 uint32_t const cMax = pShared->cAllocated; 721 723 for (unsigned i = 0; i < 100; i++) 722 724 { … … 758 760 /* this shouldn't happen yet... */ 759 761 AssertFailed(); 760 PRTLOCKVALRECSHRDOWN volatile *papOwners = pShared->papOwners;761 uint32_t const 762 PRTLOCKVALRECSHRDOWN volatile *papOwners = pShared->papOwners; 763 uint32_t const cMax = pShared->cAllocated; 762 764 for (iEntry = 0; iEntry < cMax; iEntry++) 763 765 if (ASMAtomicCmpXchgPtr((void * volatile *)&papOwners[iEntry], NULL, pEntry)) … … 857 859 * Locate the entry for this thread in the table. 858 860 */ 859 uint32_t 860 PRTLOCKVALRECSHRDOWN pEntry = rtLockValidatorSharedRecFindThread(pRead, hThread, &iEntry);861 uint32_t iEntry = 0; 862 PRTLOCKVALRECSHRDOWN pEntry = rtLockValidatorSharedRecFindThread(pRead, hThread, &iEntry); 861 863 AssertReturn(pEntry, VERR_SEM_LV_NOT_OWNER); 862 864 … … 1247 1249 * Process the current record. 1248 1250 */ 1249 /* Find the next relevan owner thread. */1251 /* Find the next relevant owner thread. */ 1250 1252 PRTTHREADINT pNextThread; 1251 1253 switch (pRec->Core.u32Magic) … … 1294 1296 if (ASMAtomicUoReadU32(&pRec->Shared.cEntries) > 0) 1295 1297 { 1296 uint32_t 1297 PRTLOCKVALRECSHRDOWN volatile *papOwners = pRec->Shared.papOwners;1298 uint32_t cAllocated = ASMAtomicUoReadU32(&pRec->Shared.cAllocated); 1299 PRTLOCKVALRECSHRDOWN volatile *papOwners = pRec->Shared.papOwners; 1298 1300 while (++iEntry < cAllocated) 1299 1301 { … … 1468 1470 char szPrefix[24]; 1469 1471 RTStrPrintf(szPrefix, sizeof(szPrefix), "#%02u: ", i); 1470 PRTLOCKVALRECSHRDOWN pSh aredOwn= NULL;1472 PRTLOCKVALRECSHRDOWN pShrdOwner = NULL; 1471 1473 if (pStack->a[i].pRec->Core.u32Magic == RTLOCKVALRECSHRD_MAGIC) 1472 pSh aredOwn= pStack->a[i].pRec->Shared.papOwners[pStack->a[i].iEntry];1473 if (VALID_PTR(pSh aredOwn) && pSharedOwn->Core.u32Magic == RTLOCKVALRECSHRDOWN_MAGIC)1474 rtLockValidatorComplainAboutLock(szPrefix, (PRTLOCKVALRECUNION)pSh aredOwn, "\n");1474 pShrdOwner = pStack->a[i].pRec->Shared.papOwners[pStack->a[i].iEntry]; 1475 if (VALID_PTR(pShrdOwner) && pShrdOwner->Core.u32Magic == RTLOCKVALRECSHRDOWN_MAGIC) 1476 rtLockValidatorComplainAboutLock(szPrefix, (PRTLOCKVALRECUNION)pShrdOwner, "\n"); 1475 1477 else 1476 1478 rtLockValidatorComplainAboutLock(szPrefix, pStack->a[i].pRec, "\n");
Note:
See TracChangeset
for help on using the changeset viewer.