VirtualBox

Changeset 106020 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Sep 12, 2024 9:23:00 AM (7 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
164769
Message:

IPRT: Added RTCritSectInitNamed and RTCritSectRwInitNamed to simplify naming critical sections w/o sabotaging automatic lock order validation.

Location:
trunk/src/VBox/Runtime/generic
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/generic/critsect-generic.cpp

    r98103 r106020  
    7777
    7878
     79RTDECL(int) RTCritSectInitNamed(PRTCRITSECT pCritSect, const char *pszName)
     80{
     81    return RTCritSectInitEx(pCritSect, 0, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "%s", pszName);
     82}
     83RT_EXPORT_SYMBOL(RTCritSectInitNamed);
     84
     85
    7986RTDECL(int) RTCritSectInitEx(PRTCRITSECT pCritSect, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass,
    8087                             const char *pszNameFmt, ...)
  • trunk/src/VBox/Runtime/generic/critsectrw-generic.cpp

    r98103 r106020  
    9797
    9898
     99RTDECL(int) RTCritSectRwInitNamed(PRTCRITSECTRW pThis, const char *pszName)
     100{
     101    return RTCritSectRwInitEx(pThis, 0, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "%s", pszName);
     102}
     103RT_EXPORT_SYMBOL(RTCritSectRwInitNamed);
     104
     105
    99106RTDECL(int) RTCritSectRwInitEx(PRTCRITSECTRW pThis, uint32_t fFlags,
    100107                               RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
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