Changeset 24079 in vbox for trunk/src/VBox
- Timestamp:
- Oct 26, 2009 2:26:06 PM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r24074 r24079 4402 4402 { 4403 4403 /* nothing to do */ 4404 LogFlowThisFunc(("Already uninitialized! "));4404 LogFlowThisFunc(("Already uninitialized!\n")); 4405 4405 return true; 4406 4406 } … … 4412 4412 { 4413 4413 /* nothing to do */ 4414 LogFlowThisFunc(("Not spawning any more! "));4414 LogFlowThisFunc(("Not spawning any more!\n")); 4415 4415 return true; 4416 4416 } … … 8075 8075 mData->mSession.mType.setNull(); 8076 8076 8077 /* close the interprocess semaphore before leaving the sharedlock */8077 /* close the interprocess semaphore before leaving the exclusive lock */ 8078 8078 #if defined(RT_OS_WINDOWS) 8079 8079 if (mIPCSem) … … 8103 8103 mData.free(); 8104 8104 8105 /* leave the sharedlock before setting the below two to NULL */8105 /* leave the exclusive lock before setting the below two to NULL */ 8106 8106 alock.leave(); 8107 8107 … … 8322 8322 AutoCaller autoCaller(this); 8323 8323 8324 LogFlowThisFunc((" state=%d\n", autoCaller.state()));8324 LogFlowThisFunc(("callerstate=%d\n", autoCaller.state())); 8325 8325 /* 8326 8326 * We don't assert below because it might happen that a non-direct session … … 9049 9049 /* return true if not ready, to cause the client watcher to exclude 9050 9050 * the corresponding session from watching */ 9051 LogFlowThisFunc(("Already uninitialized! "));9051 LogFlowThisFunc(("Already uninitialized!\n")); 9052 9052 return true; 9053 9053 } -
trunk/src/VBox/Main/SessionImpl.cpp
r23675 r24079 793 793 794 794 /* go to the closing state */ 795 mState = 795 mState = SessionState_Closing; 796 796 797 797 if (mType == SessionType_Direct) -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r23911 r24079 1187 1187 tr ("Could not find a registered machine named '%ls'"), aName); 1188 1188 1189 LogFlowThisFunc((" rc=%08X\n", rc));1189 LogFlowThisFunc(("aName=\"%ls\", aMachine=%p, rc=%08X\n", aName, *aMachine, rc)); 1190 1190 LogFlowThisFuncLeave(); 1191 1191
Note:
See TracChangeset
for help on using the changeset viewer.