Changeset 106020 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Sep 12, 2024 9:23:00 AM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164769
- Location:
- trunk/src/VBox/Runtime/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/critsect-generic.cpp
r98103 r106020 77 77 78 78 79 RTDECL(int) RTCritSectInitNamed(PRTCRITSECT pCritSect, const char *pszName) 80 { 81 return RTCritSectInitEx(pCritSect, 0, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "%s", pszName); 82 } 83 RT_EXPORT_SYMBOL(RTCritSectInitNamed); 84 85 79 86 RTDECL(int) RTCritSectInitEx(PRTCRITSECT pCritSect, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, 80 87 const char *pszNameFmt, ...) -
trunk/src/VBox/Runtime/generic/critsectrw-generic.cpp
r98103 r106020 97 97 98 98 99 RTDECL(int) RTCritSectRwInitNamed(PRTCRITSECTRW pThis, const char *pszName) 100 { 101 return RTCritSectRwInitEx(pThis, 0, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "%s", pszName); 102 } 103 RT_EXPORT_SYMBOL(RTCritSectRwInitNamed); 104 105 99 106 RTDECL(int) RTCritSectRwInitEx(PRTCRITSECTRW pThis, uint32_t fFlags, 100 107 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
Note:
See TracChangeset
for help on using the changeset viewer.