Changeset 66217 in vbox
- Timestamp:
- Mar 23, 2017 9:33:56 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114135
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/SessionImpl.cpp
r65103 r66217 1094 1094 * and later reacquired during the unlocking. 1095 1095 * 1096 * @note To be called only from #uninit(), #UnlockMachine() or #Uninitialize(). 1096 * @note To be called only from #uninit(), ISession::UnlockMachine() or 1097 * ISession::Uninitialize(). 1097 1098 */ 1098 1099 HRESULT Session::i_unlockMachine(bool aFinalRelease, bool aFromServer, AutoWriteLock &aLockW) -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r66126 r66217 10767 10767 * This method assumes that mMediumAttachments contains the original hard disk 10768 10768 * attachments it needs to create diffs for. On success, these attachments will 10769 * be replaced with the created diffs. On failure, #deleteImplicitDiffs() is 10770 * implicitly called to delete created diffs which will also rollback 10771 * mMediumAttachments and restore whatever was backed up before calling this 10772 * method. 10769 * be replaced with the created diffs. 10773 10770 * 10774 10771 * Attachments with non-normal hard disks are left as is. … … 11014 11011 * 11015 11012 * Note that to delete hard disks created by #attachDevice() this method is 11016 * called from # fixupMedia() when the changes are rolled back.11013 * called from #i_rollbackMedia() when the changes are rolled back. 11017 11014 * 11018 11015 * @note Locks this object and the media tree for writing. … … 12205 12202 * @note This method must be called from under this object's lock. 12206 12203 * 12207 * @note This method doesn't call # commit(), so all data remains backed up and12204 * @note This method doesn't call #i_commit(), so all data remains backed up and 12208 12205 * unsaved. 12209 12206 */ -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r65158 r66217 128 128 /** 129 129 * Abstract callback event class to asynchronously call VirtualBox callbacks 130 * on a dedicated event thread. Subclasses reimplement #handleCallback() 131 * to call appropriate IVirtualBoxCallback methods depending on the event 132 * to be dispatched. 130 * on a dedicated event thread. Subclasses reimplement #prepareEventDesc() 131 * to initialize the event depending on the event to be dispatched. 133 132 * 134 133 * @note The VirtualBox instance passed to the constructor is strongly … … 2738 2737 /** 2739 2738 * Adds the given child process ID to the list of processes to be reaped. 2740 * This call should be followed by # updateClientWatcher() to take the effect.2739 * This call should be followed by #i_updateClientWatcher() to take the effect. 2741 2740 * 2742 2741 * @note Doesn't lock anything. … … 4886 4885 4887 4886 /** 4888 * Thread function that handles custom events posted using # postEvent().4887 * Thread function that handles custom events posted using #i_postEvent(). 4889 4888 */ 4890 4889 // static … … 4948 4947 4949 4948 /** 4950 * Takes the current list of registered callbacks of the managed VirtualBox 4951 * instance, and calls #handleCallback() for every callback item from the 4952 * list, passing the item as an argument. 4949 * Prepare the event using the overwritten #prepareEventDesc method and fire. 4953 4950 * 4954 4951 * @note Locks the managed VirtualBox object for reading but leaves the lock
Note:
See TracChangeset
for help on using the changeset viewer.