VirtualBox

Ignore:
Timestamp:
Dec 31, 2009 1:41:35 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
56300
Message:

lockvalidator.*: some more cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/misc/lockvalidator.cpp

    r25607 r25609  
    212212            case RTLOCKVALRECSHRDOWN_MAGIC:
    213213            {
    214                 PRTLOCKVALRECSHRD pShared = pRec->SharedOwn.pSharedRec;
     214                PRTLOCKVALRECSHRD pShared = pRec->ShrdOwner.pSharedRec;
    215215                if (    VALID_PTR(pShared)
    216216                    &&  pShared->Core.u32Magic == RTLOCKVALRECSHRD_MAGIC)
    217217                    RTAssertMsg2AddWeak("%s%p %s srec=%p trec=%p thr=%s nest=%u pos={%Rbn(%u) %Rfn %p}%s", pszPrefix,
    218218                                        pShared->hLock, pShared->pszName, pShared,
    219                                         pRec, rtLockValidatorNameThreadHandle(&pRec->SharedOwn.hThread), pRec->SharedOwn.cRecursion,
    220                                         pRec->SharedOwn.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,
    221221                                        pszSuffix);
    222222                else
    223223                    RTAssertMsg2AddWeak("%sbad srec=%p trec=%p thr=%s nest=%u pos={%Rbn(%u) %Rfn %p}%s", pszPrefix,
    224224                                        pShared,
    225                                         pRec, rtLockValidatorNameThreadHandle(&pRec->SharedOwn.hThread), pRec->SharedOwn.cRecursion,
    226                                         pRec->SharedOwn.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,
    227227                                        pszSuffix);
    228228                break;
     
    549549{
    550550    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;
    555556        for (uint32_t iEntry = 0; iEntry < cMax; iEntry++)
    556557        {
     
    565566        }
    566567    }
     568
    567569    rtLockValidatorSerializeDetectionLeave();
    568570    return NULL;
     
    659661                 */
    660662#if 0  /** @todo enable this after making sure growing works flawlessly. */
    661                 uint32_t                    cInc = RT_ALIGN_32(pShared->cEntries - cAllocated, 16);
     663                uint32_t                cInc = RT_ALIGN_32(pShared->cEntries - cAllocated, 16);
    662664#else
    663                 uint32_t                    cInc = RT_ALIGN_32(pShared->cEntries - cAllocated, 1);
     665                uint32_t                cInc = RT_ALIGN_32(pShared->cEntries - cAllocated, 1);
    664666#endif
    665                 PRTLOCKVALRECSHRDOWN  *papOwners;
     667                PRTLOCKVALRECSHRDOWN   *papOwners;
    666668                papOwners = (PRTLOCKVALRECSHRDOWN *)RTMemRealloc((void *)pShared->papOwners,
    667                                                                       (cAllocated + cInc) * sizeof(void *));
     669                                                                 (cAllocated + cInc) * sizeof(void *));
    668670                if (!papOwners)
    669671                {
     
    717719            return false; /* the worker leave the lock */
    718720
    719         PRTLOCKVALRECSHRDOWN volatile *papOwners = pShared->papOwners;
    720         uint32_t const                      cMax      = pShared->cAllocated;
     721        PRTLOCKVALRECSHRDOWN volatile  *papOwners = pShared->papOwners;
     722        uint32_t const                  cMax      = pShared->cAllocated;
    721723        for (unsigned i = 0; i < 100; i++)
    722724        {
     
    758760        /* this shouldn't happen yet... */
    759761        AssertFailed();
    760         PRTLOCKVALRECSHRDOWN volatile *papOwners = pShared->papOwners;
    761         uint32_t const                      cMax      = pShared->cAllocated;
     762        PRTLOCKVALRECSHRDOWN volatile  *papOwners = pShared->papOwners;
     763        uint32_t const                  cMax      = pShared->cAllocated;
    762764        for (iEntry = 0; iEntry < cMax; iEntry++)
    763765            if (ASMAtomicCmpXchgPtr((void * volatile *)&papOwners[iEntry], NULL, pEntry))
     
    857859     * Locate the entry for this thread in the table.
    858860     */
    859     uint32_t                    iEntry = 0;
    860     PRTLOCKVALRECSHRDOWN   pEntry = rtLockValidatorSharedRecFindThread(pRead, hThread, &iEntry);
     861    uint32_t                iEntry = 0;
     862    PRTLOCKVALRECSHRDOWN    pEntry = rtLockValidatorSharedRecFindThread(pRead, hThread, &iEntry);
    861863    AssertReturn(pEntry, VERR_SEM_LV_NOT_OWNER);
    862864
     
    12471249         * Process the current record.
    12481250         */
    1249         /* Find the next relevan owner thread. */
     1251        /* Find the next relevant owner thread. */
    12501252        PRTTHREADINT pNextThread;
    12511253        switch (pRec->Core.u32Magic)
     
    12941296                if (ASMAtomicUoReadU32(&pRec->Shared.cEntries) > 0)
    12951297                {
    1296                     uint32_t                            cAllocated = ASMAtomicUoReadU32(&pRec->Shared.cAllocated);
    1297                     PRTLOCKVALRECSHRDOWN volatile *papOwners  = pRec->Shared.papOwners;
     1298                    uint32_t                        cAllocated = ASMAtomicUoReadU32(&pRec->Shared.cAllocated);
     1299                    PRTLOCKVALRECSHRDOWN volatile  *papOwners  = pRec->Shared.papOwners;
    12981300                    while (++iEntry < cAllocated)
    12991301                    {
     
    14681470            char szPrefix[24];
    14691471            RTStrPrintf(szPrefix, sizeof(szPrefix), "#%02u: ", i);
    1470             PRTLOCKVALRECSHRDOWN pSharedOwn = NULL;
     1472            PRTLOCKVALRECSHRDOWN pShrdOwner = NULL;
    14711473            if (pStack->a[i].pRec->Core.u32Magic == RTLOCKVALRECSHRD_MAGIC)
    1472                 pSharedOwn = pStack->a[i].pRec->Shared.papOwners[pStack->a[i].iEntry];
    1473             if (VALID_PTR(pSharedOwn) && pSharedOwn->Core.u32Magic == RTLOCKVALRECSHRDOWN_MAGIC)
    1474                 rtLockValidatorComplainAboutLock(szPrefix, (PRTLOCKVALRECUNION)pSharedOwn, "\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");
    14751477            else
    14761478                rtLockValidatorComplainAboutLock(szPrefix, pStack->a[i].pRec, "\n");
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