Changeset 40452 in vbox for trunk/src/VBox
- Timestamp:
- Mar 13, 2012 5:18:22 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76809
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/AutoLock.cpp
r40257 r40452 423 423 void AutoLockBase::acquire() 424 424 { 425 AssertMsg (!m->fIsLocked, ("m->fIsLocked is true, attempting to lock twice!"));425 AssertMsgReturnVoid(!m->fIsLocked, ("m->fIsLocked is true, attempting to lock twice!")); 426 426 callLockOnAllHandles(); 427 427 m->fIsLocked = true; … … 433 433 void AutoLockBase::release() 434 434 { 435 AssertMsg (m->fIsLocked, ("m->fIsLocked is false, cannot release!"));435 AssertMsgReturnVoid(m->fIsLocked, ("m->fIsLocked is false, cannot release!")); 436 436 callUnlockOnAllHandles(); 437 437 m->fIsLocked = false;
Note:
See TracChangeset
for help on using the changeset viewer.