VirtualBox

Changeset 25704 in vbox for trunk/src/VBox/Runtime/r3/linux


Ignore:
Timestamp:
Jan 10, 2010 8:12:30 PM (15 years ago)
Author:
vboxsync
Message:

iprt,pdmcritsect: More flexible lock naming, added RTCritSectSetSubClass and made some RTCritSectInitEx.

Location:
trunk/src/VBox/Runtime/r3/linux
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/linux/semevent-linux.cpp

    r25685 r25704  
    131131        RTLockValidatorRecSharedInit(&pThis->Signallers,
    132132                                     NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY,
    133                                      "RTSemEvent", pThis, true /*fSignaller*/, true);
     133                                     pThis, true /*fSignaller*/, true /*fEnabled*/, "RTSemEvent");
    134134        pThis->fEverHadSignallers = false;
    135135#endif
  • trunk/src/VBox/Runtime/r3/linux/semeventmulti-linux.cpp

    r25688 r25704  
    132132        RTLockValidatorRecSharedInit(&pThis->Signallers,
    133133                                     NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_ANY,
    134                                      "RTSemEventMulti", pThis, true /*fSignaller*/, true);
     134                                     pThis, true /*fSignaller*/, true /*fEnabled*/, "RTSemEvent");
    135135        pThis->fEverHadSignallers = false;
    136136#endif
  • trunk/src/VBox/Runtime/r3/linux/semmutex-linux.cpp

    r25685 r25704  
    120120        pThis->cNesting = 0;
    121121#ifdef RTSEMMUTEX_STRICT
    122         RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemMutex", pThis, true);
     122        RTLockValidatorRecExclInit(&pThis->ValidatorRec, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, pThis,
     123                                   true /*fEnabled*/, "RTSemMutex");
    123124#endif
    124125
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