Changeset 27903 in vbox
- Timestamp:
- Mar 31, 2010 2:11:15 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImplImport.cpp
r27900 r27903 610 610 /** 611 611 * Implementation for reading an OVF. This starts a new thread which will call 612 * Appliance::taskThreadImportO VF() which will then call readFS() or readS3().612 * Appliance::taskThreadImportOrExport() which will then call readFS() or readS3(). 613 613 * 614 614 * This is in a separate private method because it is used from two locations: 615 615 * 616 616 * 1) from the public Appliance::Read(). 617 * 2) from Appliance::readS3(), which got called from a previous instance of Appliance::taskThreadImportO VF().617 * 2) from Appliance::readS3(), which got called from a previous instance of Appliance::taskThreadImportOrExport(). 618 618 * 619 619 * @param aLocInfo … … 658 658 659 659 /** 660 * Actual worker code for reading an OVF from disk. This is called from Appliance::taskThreadImportO VF()660 * Actual worker code for reading an OVF from disk. This is called from Appliance::taskThreadImportOrExport() 661 661 * and therefore runs on the OVF read worker thread. This runs in two contexts: 662 662 * … … 712 712 713 713 /** 714 * Worker code for writing out OVF to the cloud. This is called from Appliance::taskThreadImportO VF()714 * Worker code for writing out OVF to the cloud. This is called from Appliance::taskThreadImportOrExport() 715 715 * in S3 mode and therefore runs on the OVF read worker thread. This then starts a second worker 716 716 * thread to create temporary files (see Appliance::readFS()). … … 908 908 /** 909 909 * Implementation for importing OVF data into VirtualBox. This starts a new thread which will call 910 * Appliance::taskThreadImportO VF().910 * Appliance::taskThreadImportOrExport(). 911 911 * 912 912 * This is in a separate private method because it is used from two locations: 913 913 * 914 914 * 1) from the public Appliance::ImportMachines(). 915 * 2) from Appliance::importS3(), which got called from a previous instance of Appliance::taskThreadImportO VF().915 * 2) from Appliance::importS3(), which got called from a previous instance of Appliance::taskThreadImportOrExport(). 916 916 * 917 917 * @param aLocInfo … … 945 945 946 946 /** 947 * Actual worker code for importing OVF data into VirtualBox. This is called from Appliance::taskThreadImportO VF()947 * Actual worker code for importing OVF data into VirtualBox. This is called from Appliance::taskThreadImportOrExport() 948 948 * and therefore runs on the OVF import worker thread. This runs in two contexts: 949 949 * … … 1780 1780 1781 1781 /** 1782 * Gets called from taskThreadImportOVF(). 1782 * Worker code for importing OVF from the cloud. This is called from Appliance::taskThreadImportOrExport() 1783 * in S3 mode and therefore runs on the OVF import worker thread. This then starts a second worker 1784 * thread to import from temporary files (see Appliance::importFS()). 1783 1785 * @param pTask 1784 1786 * @return
Note:
See TracChangeset
for help on using the changeset viewer.