Changeset 37241 in vbox for trunk/src/VBox
- Timestamp:
- May 27, 2011 3:37:48 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r37215 r37241 621 621 * @return VBox status code. 622 622 * @param pVM The VM handle. 623 * @param pAlock The automatic lock instance. This is for when we have 624 * to leave it in order to avoid deadlocks (ext packs and 625 * more). 623 626 */ 624 627 int Console::configConstructorInner(PVM pVM, AutoWriteLock *pAlock) … … 2594 2597 #undef H 2595 2598 2599 pAlock->release(); /* Avoid triggering the lock order inversion check. */ 2600 2596 2601 /* 2597 2602 * Register VM state change handler. … … 2609 2614 if (RT_SUCCESS(rc)) 2610 2615 rc = rc2; 2616 2617 pAlock->acquire(); 2611 2618 2612 2619 LogFlowFunc(("vrc = %Rrc\n", rc));
Note:
See TracChangeset
for help on using the changeset viewer.