Changeset 52489 in vbox
- Timestamp:
- Aug 25, 2014 8:27:46 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95714
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/AutoCaller.h
r52095 r52489 182 182 { 183 183 mObj = aObj; 184 185 184 mRC = S_OK; 185 mLimited = aLimited; 186 186 if (mObj) 187 187 mRC = mObj->getObjectState().addCaller(mLimited); -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r52483 r52489 8065 8065 AssertComRCReturnRC(autoCaller.rc()); 8066 8066 AssertComRCReturn( getObjectState().getState() == ObjectState::InInit 8067 8067 || getObjectState().getState() == ObjectState::Limited, E_FAIL); 8068 8068 8069 8069 AssertReturn(!mData->mAccessible, E_FAIL); -
trunk/src/VBox/Main/src-server/win/svcmain.cpp
r52240 r52489 94 94 { 95 95 /* Disable log rotation at this point, worst case a log file 96 97 98 99 96 * becomes slightly bigger than it should. Avoids quirks with 97 * log rotation: there might be another API service process 98 * running at this point which would rotate the logs concurrently, 99 * creating a mess. */ 100 100 PRTLOGGER pReleaseLogger = RTLogRelDefaultInstance(); 101 101 if (pReleaseLogger)
Note:
See TracChangeset
for help on using the changeset viewer.