Changeset 106077 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Sep 17, 2024 7:36:17 PM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164843
- Location:
- trunk/src/VBox/Main/src-all
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/VirtualBoxBase.cpp
r106061 r106077 195 195 // getLockingClass() is overridden by many subclasses to return 196 196 // one of the locking classes listed at the top of AutoLock.h 197 RWLockHandle *objLock = new RWLockHandle(getLockingClass()); 197 // getComponentName() returns the class name by default. 198 RWLockHandle *objLock = new RWLockHandle(getLockingClass(), getComponentName()); 198 199 if (!ASMAtomicCmpXchgPtr(&mObjectLock, objLock, NULL)) 199 200 { -
trunk/src/VBox/Main/src-all/VirtualBoxTranslator.cpp
r106061 r106077 147 147 148 148 VirtualBoxTranslator::VirtualBoxTranslator() 149 : util::RWLockHandle(util::LOCKCLASS_TRANSLATOR )149 : util::RWLockHandle(util::LOCKCLASS_TRANSLATOR, "VirtualBoxTranslator") 150 150 , m_cInstanceRefs(0) 151 151 , m_pDefaultComponent(NULL)
Note:
See TracChangeset
for help on using the changeset viewer.